/* Logo image styles */
.logo-image {
    width: 110px;
    height: 110px;
}

/* Blood types section specific styles */
.blood-types.get-blood-section {
    min-height: 80vh;
    padding: 120px 0;
}

/* Content placeholder styles */
.content-placeholder {
    text-align: center;
    margin-top: 3rem;
}

.content-placeholder-inner {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-placeholder-icon {
    font-size: 3rem;
    color: #dc267f;
    margin-bottom: 1rem;
}

.content-placeholder-title p{
    color: #dc267f;
    margin-bottom: 1rem;
}

.custom-list {
    list-style: none; /* remove default bullets */
    padding: 0;
    margin: 0;
    color: #666;
    line-height: 1.6;
    text-align: left;
}

.custom-list li {
    position: relative;
    padding-left: 20px; /* space for dash */
    margin-bottom: 15px;
    line-height: 1.5;
}

.custom-list li::before {
    content: "\f068"; /* Font Awesome minus icon */
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
    color: red;
    position: absolute;
    left: 0;
    top: 0;
}

/* Second Section css */
.blood-types.time-section{
    background: linear-gradient(135deg, #dc267f 0%, #ff4757 100%);
}

.section-title-2{
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #7b1f4c, #353232);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Blood storage table styles */
.blood-storage-table {
    border-collapse: collapse;
    margin: 30px auto;
    width: auto;
    white-space: nowrap;
    display: table;
}

.blood-storage-table-wrapper {
    margin: 25px auto; 
    width: 100%;
    overflow-x: auto;    
    position: relative;
    display: block; 
    -webkit-overflow-scrolling: touch;
}

.blood-storage-table th {
    border: 1px solid #ddd;
    color: #ffff;
    padding: 8px;
    text-align: left;
    background: #d86d6d;
}

.blood-storage-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.note {
    margin-top: -10px;
    padding: 15px;
    margin-left: 90px;
    width: 720px;
    background-color: #e8f4f8;
    border-radius: 8px;
    font-size: 0.95rem;
    border-left: 4px solid #3b8fc2;
    overflow-x: hidden;
}

/* Mobile responsiveness */
        @media screen and (max-width: 768px) {
            .blood-storage-table th,
            .blood-storage-table td {
                padding: 14px 16px;
                white-space: nowrap;
            }

            .note{
                margin-left: 0px;
                width: fit-content;
             }

            .blood-storage-table{
                margin-left: 0px;
                width: auto;
                min-width: 600px;
                animation: auto-scroll 30s infinite ease-in-out;
            }

            @keyframes auto-scroll {
                0%   { transform: translateX(0); }
                20%  { transform: translateX(0); }
                50%  { transform: translateX(calc(-100% + 100vw - 160px)); }
                70%  { transform: translateX(calc(-100% + 100vw - 160px)); }
                100% { transform: translateX(0); }
            }

            .header {
                padding: 30px 20px;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .blood-storage-table {
                border-radius: 8px;
                margin-left: 0px;
            }
         
            .blood-storage-table th,
            .blood-storage-table td {
                padding: 12px 14px;
                font-size: 0.95rem;
            }
            
            .blood-storage-table th {
                font-size: 1rem;
            }
            
            .temperature {
                padding: 4px 10px;
                font-size: 0.9rem;
            }
        }
        

/* Emergency contact link in footer */
.footer .emergency-contact {
    color: #ff4757;
    font-weight: bold;
    font-size: 1.2rem;
}

