@charset "UTF-8";


        body { 
    background-color: white; 
    margin: 0;
     
}  
       

 
        h2 {
            text-align: center;
            margin-bottom: 0px;
            color:  rgb(0, 139, 139); ;
        } 

        table.dataTable {
            width: 100% !important;
            border-collapse: collapse;
        }

        table.dataTable thead th {
            background-color:  #136360;
            color: white; 
            font-weight:bold; 
            padding: 10px;
            border-bottom: 2px solid #1f618d;
        }

        table.dataTable tbody tr:nth-child(odd) {
            background-color: #ecf0f1;
        }

        table.dataTable tbody tr:nth-child(even) {
            background-color: #ffffff;
        } 

        table.dataTable tbody td {
            padding: 10px;
            color: #34495e;
        }

        table.dataTable tbody tr:hover {
            background-color: #d6eaf8;
            cursor: pointer;
        }

        /* Style links in the download and details columns */
        a {
            color: #136360;
            text-decoration: none;
            font-weight: 600;
        }

        a:hover {
            text-decoration: underline;
        }

        /* Responsive tweaks */
        @media (max-width: 768px) {
            table.dataTable thead th, table.dataTable tbody td {
                font-size: 12px;
                padding: 6px;
            }
        }
        
        
        
        
        .error-box {
    background: #E0FFFF; 
    align-items: center;
    color: #842029;
    padding: 20px;
  
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 20px auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeIn 0.5s ease-in-out;
}

.error-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.error-title::before {
    margin-right: 8px;
    font-size: 24px;
}

.error-box p {
    margin: 0;
    line-height: 1.6;
    font-size: 16px;
}

/* Optional animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





.modern-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #136360;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  padding: 10px 20px;
}

.logo-container {
  display: center;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

    
    /* === Animation === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Responsive Media Queries === */
@media (max-width: 1024px) {
    .modern-header h2 {
        font-size: 18px;
    }

    table.dataTable thead th,
    table.dataTable tbody td {
        font-size: 13px;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .modern-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        height: 40px;
        margin-bottom: 8px;
    }

    .modern-header h2 {
        font-size: 16px;
        margin: 0;
    }

    .content {
        padding: 120px 10px 20px;
    }

    table.dataTable thead th,
    table.dataTable tbody td {
        font-size: 12px;
        padding: 8px;
    }

    .error-box {
        padding: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 35px;
    }

    .modern-header h2 {
        font-size: 14px;
    }

    table.dataTable thead th,
    table.dataTable tbody td {
        font-size: 11px;
        padding: 6px;
    }
}


























 