/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    overflow-y: auto;
}

.header {
    display: flex;
    align-items: center;
    color: #fff;
    padding: 10px 20px;
    flex-direction: column;
}

.header img {
    height: 140px;
    margin-bottom: 10px;
}

.header nav {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.header nav a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

.header nav a:hover {
    text-decoration: underline;
}

.container {
    width: 95%;
    max-width: none;
    margin: 10px auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
    min-height: calc(100vh - 120px);
}

h1 {
    color: #555;
}

label {
    display: block;
    margin: 10px 0 5px;
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 5px auto;
}

button:hover {
    background: #0056b3;
}

.table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    overflow-x: auto;
}

.table th, .table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
    word-wrap: break-word;
}

.table th {
    background-color: #007bff;
    color: white;
}

.table-container {
    overflow-x: auto;
}

/* Footer with responsive logos */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    flex-wrap: wrap;
}

.footer img {
    height: auto;
    transition: transform 0.3s ease-in-out;
    max-height: 150px;
}



.footer img:hover {
    transform: scale(1.1);
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }
    .footer img {
        margin: 10px 0;
        max-width: 100%;
    }
}

/* Circles */
.circles {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #007bff;
}

.circle span {
    margin-top: 10px;
    font-size: 16px;
}

/* Notifications */
.notifications {
    margin: 15px 0;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    color: red;
    font-size: 15px;
    line-height: 1.6;
    font-family: "Arial", sans-serif;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    word-wrap: break-word;
}

.notifications strong {
    display: block;
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.notifications p {
    margin: 0;
    padding: 0;
}

.notifications::-webkit-scrollbar {
    width: 8px;
}

.notifications::-webkit-scrollbar-thumb {
    background-color: #bbb;
    border-radius: 10px;
}

.notifications::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* Pagination Styles */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px 0;
}

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    min-width: 120px;
    border: 2px solid transparent;
}

.pagination a:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    border-color: #fff;
}

.pagination a:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        width: 98%;
        margin: 5px auto;
        padding: 15px;
    }
    
    .circles {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .circle {
        width: 150px;
        height: 150px;
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
        margin: 0;
        padding: 10px;
        border-radius: 0;
    }
    
    .circles {
        flex-direction: column;
        align-items: center;
    }
    
    .circle {
        width: 120px;
        height: 120px;
        font-size: 16px;
        margin: 10px 0;
    }
    
    .pagination {
        flex-direction: column;
        gap: 10px;
    }
    
    .pagination a {
        width: 100%;
        max-width: 200px;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .table {
        font-size: 14px;
    }
    
    .notifications {
        font-size: 14px;
    }
}
