﻿
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;

}



th, td {
    border: 1px solid #fff;
    padding: 8px;
    text-align: left;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    
}



th {
    background-color: #156082;
}

tr:nth-child(odd) {
    background-color: #e7eaed;
}

tr:nth-child(even) {
    background-color: #ccd2d8;
}

.checkmark {
    text-align: center;
    cursor: pointer;
}

.header-row th {
    background-color: #156082;
    color: white;
}

.add-user {
    color: red;
    cursor: pointer;
    text-decoration: none;
}

    .add-user:hover {
        color: red;
    }

.remove-link {
    color: black;
    font-weight: bold;
    float: right;
    cursor: pointer;
    text-decoration: none;
}

.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    text-align: center;
    margin: auto;
}

.popup-btn {
    margin: 5px;
    padding: 10px;
    border: none;
    color: white;
    background-color: #7ebcff;
    cursor: pointer;
    border-radius: 7px;
    width: 200px;
}

    .popup-btn:hover {
        background-color: #0056b3;
    }


#popup-fields input {
    display: block;
    width: 100%; /* Take full width of the parent container */
    margin-bottom: 10px; /* Space between input fields */
    padding: 8px;
    box-sizing: border-box; /* Include padding and border in element's total width and height */
}