/* style.css */
 
/* Custom Siemens Teal Color */
.bg-siemens-teal {
    background-color: #009999;
}
 
.hover\:bg-siemens-teal-dark:hover {
    background-color: #007a7a; /* A slightly darker shade for hover effect */
}
 
.text-siemens-teal {
    color: #009999;
}
 
/* Add any other custom styles here that Tailwind doesn't easily cover.
   For example, custom scrollbar styles or complex transitions. */
 
/* Basic styling for thumbnail deletion */
.thumbnail-container {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background-color: #f9f9f9;
}
 
.thumbnail-container img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    flex-grow: 1; /* Allow image to take available space */
}
 
.delete-button {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.2s ease-in-out;
}
 
.thumbnail-container:hover .delete-button {
    opacity: 1; /* Show on hover */
}
 
.page-number {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}