h1 sup {
    font-size: x-small;
}

nav {
    background: #ddd;
    padding: 10px;
    position: fixed;
    width: 100%;
}

table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;

    color: #333;
    font-family: Arial, sans-serif;
    /* font-size: 14px; */
    font-weight: bold;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: 5px;
    margin-bottom: 10px;
}

table, td {
    /* border: 1px solid black; */
    font-family: 'Courier New', Courier, monospace;
    /* font-size: 0.85em; */
}

table, th {
    border: 1px solid black;
    font-family: 'Mulish';
    font-size: 1em;
}

table th {
    background-color: #555;
    color: #fff;
    font-weight: bold;
    padding: 2px 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #ccc;
}

table tr:nth-child(even) td {
  background-color: #f2f2f2;
}

/* table tr:hover td {
  background-color: #ffedcc;
} */

table th:nth-child(1) { 
    min-width: 100px; 
}
table td:nth-child(1) { 
    min-width: 100px; 
    /* opacity: 0; */
}
table th:nth-child(3) { 
    text-align: end; 
}
table td:nth-child(3) { 
    text-align: end; 
    /* opacity: 0; */
}

.invisible-element {
    opacity: 0;
}

table td {
  background-color: #fff;
  padding: 2px;
  /* border-bottom: 1px solid #ccc; */
}

#position {
    opacity: 0;
}

#nationality {
    opacity: 0;
}

.black-text {
    color: #000;
}

.green-text {
    color: #05b50b;
    font-weight: bold;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sticky-footer {
    /* position: fixed; */
    /* bottom: 0; */
    /* width: 100%; */
    /* padding-bottom: 40px; */
    font-size: 1em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
}

.toast-message {
    position: fixed;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #424242;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 1000;
    opacity: 0; /* Start with 0 opacity */
    transition: opacity 0.9s; /* Add a transition for opacity */
}

.careersle-code {
    /* color: #000; */
    background-color: transparent;
    font-size: 1em;
    padding: 0;
    border: 0px;
    margin: 0;
}

.careersle-pre {
    color: #000;
    background-color: #ffffff;
}

.careersle-container {
    width: 60%;
    margin: auto;
    overflow: hidden;
    padding: 0px 30px 80px 30px;
    flex: 1;
}

.careersle-container a {
    color: #777;
    margin: 0;
}

.careersle-container a:hover {
    color: #aaa;
}

#submitBtn {
    background-color: #4CAF50; /* Green background */
    border: none;             /* No border */
    color: white;             /* White text */
    padding: 5px 15px;       /* Padding for size */
    text-align: center;       /* Centered text */
    text-decoration: none;    /* No underline on text */
    display: inline-block;    /* Inline-block display */
    font-size: 16px;          /* Font size */
    margin: 4px 2px;          /* Margin for spacing */
    cursor: pointer;          /* Pointer cursor on hover */
    border-radius: 8px;       /* Rounded corners */
}

#submitBtn:hover {
    background-color: #45a049; /* Darker shade of green on hover */
}

#submitBtn:active {
    background-color: #3e8e41;
    transform: scale(0.98);
}

.select2-container--default .select2-selection--single {
    background-color: #555;
    border: 1px solid #bbb;
    border-radius: 4px;
}

#skipBtn {
    background-color: #0642b1; /* Green background */
    border: none;             /* No border */
    color: white;             /* White text */
    padding: 5px 15px;       /* Padding for size */
    text-align: center;       /* Centered text */
    text-decoration: none;    /* No underline on text */
    display: inline-block;    /* Inline-block display */
    font-size: 16px;          /* Font size */
    margin: 4px 2px;          /* Margin for spacing */
    cursor: pointer;          /* Pointer cursor on hover */
    border-radius: 8px;       /* Rounded corners */
}

#skipBtn:hover {
    background-color: #053692; /* Green background */
}

#skipBtn:active {
    background-color: #03225b; /* Green background */
    transform: scale(0.98);
}

#modalCloseBtn {
    background-color: #828282; /* Green background */
    border: none;             /* No border */
    color: white;             /* White text */
    padding: 5px 15px;       /* Padding for size */
    text-align: center;       /* Centered text */
    text-decoration: none;    /* No underline on text */
    display: inline-block;    /* Inline-block display */
    font-size: 16px;          /* Font size */
    margin: 4px 2px;          /* Margin for spacing */
    cursor: pointer;          /* Pointer cursor on hover */
    border-radius: 8px;       /* Rounded corners */
}

#modalCloseBtn:hover {
    background-color: #626262; /* Green background */
}

#modalCloseBtn:active {
    background-color: #474747; /* Green background */
    transform: scale(0.98);
}

#submitBtn:disabled {
    background-color: grey;  /* Grey background for disabled state */
    cursor: not-allowed;     /* Cursor to indicate the button is not clickable */
    opacity: 0.7;            /* Optionally, make it slightly transparent */
    /* Additional styles as needed */
}

#submitBtn:disabled:hover {
    background-color: grey;  /* Keeps the background color grey on hover */
}

#submitBtn:disabled:active {
    background-color: grey;  /* Keeps the background color grey on hover */
    transform: none;
}



@media screen and (max-width: 768px) {
    .careersle-container {
        width: 85%;
        /* min-height: calc(100vh - 215px); */
    }

    .navbar-link {
        float: none;
        display: block;
        text-align: right;
        display: none;
    }

    .icon {
        display: block;
        float: right;
        padding: 5px 15px;
    }

    .nav-toggle:checked ~ a {
        display: block;
    }
}
