/* Global Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; 
    color: #fff; 
    line-height: 1.6;
}


.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #212121; 
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    color: #4a90e2;
}

header p {
    color: #bbb;
    font-size: 1.1em;
}

.file-upload-container {
    text-align: center;
    margin-bottom: 20px;
}

#fileInput {
    display: none;
}

.btn {
    background-color: #4a90e2;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #357ab7;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1em;
    margin-bottom: 20px;
}

.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.dropdown-btn {
    background-color: #4a90e2;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    width: 100%; 
    transition: background-color 0.3s ease;
}

.dropdown-btn:hover {
    background-color: #357ab7;
}

.dropdown-content {
    display: none; 
    position: absolute;
    background-color: #333;
    width: 100%;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
    margin-top: 5px;
}

.dropdown-content div {
    padding: 10px;
    border-bottom: 1px solid #444;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dropdown-content div:hover {
    background-color: #555;
}

.table-container {
    overflow-x: auto;
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: #fff;
}

thead {
    background-color: #4a90e2;
}

thead th {
    padding: 12px;
    font-size: 1.1em;
    word-wrap: break-word;
    border-right: 2px solid #333; 
}

tbody td {
    padding: 12px;
    border-bottom: 1px solid #444;
    font-size: 1em;
    word-wrap: break-word; 
    max-width: 200px; 
    white-space: normal;
    cursor: pointer; 
    border-right: 2px solid #333; 
    transition: background-color 0.3s ease; 
}

tbody td:hover {
    background-color: #444; 
}

tbody tr:hover {
    background-color: #444;
}


footer {
    text-align: center;
    margin-top: 20px;
    color: #bbb;
    font-size: 0.8em;
}


@media (max-width: 768px) {
    .btn {
        font-size: 1em;
        padding: 10px 15px;
    }

    .dropdown-btn {
        padding: 10px 15px;
    }

    table {
        font-size: 0.9em;
    }

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