* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: linear-gradient(135deg, #1E1E2F, #2A2A40); 
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

h3 {
    font-weight: bold;
    color: #f8f9fa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.card {
    transition: transform 0.3s ease-in-out;
    border-radius: 8px;
}

.card:hover {
    transform: scale(1.05);
}

button {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease-in-out;
}

button:hover {
    background: #ffc107;
    color: #333;
}


.table-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

table {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.table-dark {
    background-color: #333 !important;
}

thead th {
    background: #007bff !important;
    color: white;
    text-transform: uppercase;
}


footer {
    margin-top: auto;
    padding: 6px;
    background: #121212;
    font-weight: bold;
    letter-spacing: 1px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}
