/* --- Variables --- */
:root {
    --blue: #242B2E;
    --white: #F7F8F8;
    --greywhite: #f9f9f9;
    --greybackground: #666;
    --red: red;
    --bluetext: #242B2E;
    --textcolor: #333;
    --gradient1: rgb(36, 43, 46);
    --gradient2: rgb(23, 26, 28);
    --gradient3: rgba(0, 0, 0, 1);
    --gradient-background: linear-gradient(90deg, var(--gradient1) 0%, var(--gradient2) 35%, var(--gradient3) 100%);
    --boxshadow: rgba(0, 0, 0, 0.1);
    --modal-mask: rgba(0, 0, 0, .75);
    --microsoft-background: #1C1C1C;
    --microsoft-active-background: #0A0A0A;
    /* NEW */
    --header-background: #121617;
    --userinfo-text-color: #227E82;
    --menu-background-color: #242B2E;
    --border-color: #48565B;
    --button-border-color: #DDE2E4;
    --border-radius-max: 999px;
    --border-radius-mid: 10px;


    --default-line-height: 1.2rem;

    --color-teal-00: #bceef0;
    --color-teal-0: #5cdae0;
    --color-teal-1: #23a8ad;
    --color-teal-2: #227e82;
    --color-teal-4: #133c3e;
    --color-teal-4: #133c3e;

    --color-gray-4: #1c1c1c;

    --color-white-1: #f0f0f0;
}

/* --- General Styling --- */
body {
    font-family: stolzl, sans-serif;
    font-style: normal;
    margin: 0;
    padding: 0;
    background-color: var(--greywhite);
    color: var(--textcolor);
}

p {
    color: var(--greybackground);
    font-weight: 300;
    line-height: 1.4rem;
    margin: 0;
    margin-top: 1rem;
}

p:first-child {
    margin-top: 0;
}

strong {
    font-weight: 700;
}

.main-content {
    margin: 0 auto 2rem auto;
    max-width: 1280px;
}

section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Space between boxes */
}

a {
    text-decoration: none;
    color: var(--userinfo-text-color);
    transition: 200ms color;
}

header a {
    color: var(--white);
}

a:hover {
    color: var(--textcolor);
}

header a:hover {
    color: var(--color-teal-1);
}

.login-wrapper {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

/* --- Header Styling --- */
.header {
    background: var(--header-background);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.header__title {
    font-weight: normal;
    color: var(--white);
    margin: 0;
    font-size: 1.75rem;
}

.header__link {
    color: var(--white);
    display: flex;
    justify-items: center;
    gap: .25rem;
    transition: color 200ms;
    font-size: .8rem;
}

.header__link:hover {
    color: var(--color-teal-1);
}

.user-info__avatar {
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    color: white;
    font-size: 1.25rem;
    box-sizing: border-box;
}

.user-info__avatar--no-image {
    padding-top: .25rem;
    background: var(--color-teal-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Top-nav --- */
.top-nav {
    display: flex;
    background: var(--menu-background-color);
    color: var(--white);
    justify-content: flex-start;
    font-weight: 300;
    padding: .8em 1.5rem;
    gap: 1rem;
}

.top-nav__item, .top-nav__item:active {
    font-size: .8rem;
    color: var(--white);
    display: inline-block;
}

.top-nav__item:hover {
    color: var(--color-teal-1);
    transition: color 200ms;
}

.top-nav__item--active {
    color: var(--color-teal-1);
    font-weight: bold;
    border-bottom: 2px solid var(--color-teal-1); /* Optional underline */
}

/* --- Hero section --- */

.hero {
    gap: 0;
}

.hero__layout--guest {
    max-width: 800px;
    margin: 2.5rem auto 0 auto;
    padding: 0 2rem;
}

.hero__layout {
    display: flex;
    max-width: 1024px;
    margin: 4rem auto 0 auto;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.hero__title {
    margin: 6rem 0 0 0;
    text-align: center;
    width: 100%;
}

.hero__cta {
    background: var(--color-teal-0);
    border-radius: 3px;
    padding: 2rem;
    max-width: 400px;
    flex-shrink: 0;
    margin: auto;
    line-height: var(--default-line-height);
}

.cta__title {
    margin: 0;
    text-align: center;
    color: var(--color-gray-4);
}

.cta__content {
    margin-top: 1.25rem;
    font-weight: 300;
    text-align: center;
    color: var(--color-teal-4);
}

/* --- buttons --- */
.button-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.cta__button-container {
    margin-top: 1.5em;
    flex-direction: column;
    gap: 1rem;
}

.button {
    background: var(--color-gray-4);
    padding: 1.1rem 2rem 1rem 2rem;
    border-radius:  .5rem;
    color: var(--color-white-1);
    align-items: center;
    box-sizing: border-box;
    border: 2px solid var(--color-gray-4);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .75rem;
    transition-property: background, border-color, color;
    transition-duration: 200ms;
}

.button--sm {
    padding: 0.55rem 1rem 0.5rem 1rem;
    border-radius: 5px;
}

.button--full {
    width: 100%;
}

.button:hover {
    color: white;
    background: var(--color-teal-2);
    border-color: var(--color-teal-2);
}

.button img {
    max-width: 1.5rem;
    max-height: 1.5rem;
}

.button--secondary {
    background: transparent;
    color: var(--color-teal-4);
    font-weight: 600;
    border: 2px solid var(--color-teal-4);
}

.button--secondary:hover {
    color: var(--white);
    background: transparent;
    border: 2px solid var(--white);
}

/* --- Whatever that is --- */
div.box {
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    padding: 24px;
    border: 1px solid var(--button-border-color);
    border-radius: var(--border-radius-mid);
    background: white;
    color: var(--menu-background-color);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    flex: 1; /* Make the boxes take equal space */
    min-width: calc(50% - 10px); /* Ensure they are side by side */
    max-width: calc(50% - 10px); /* Optional, adjust as needed */
}

div.box h4 {
    margin-bottom: 12px;
    font-size: 1.2rem; /* Adjust as needed */
    font-weight: bold;
}

div.box.box-featured {
    background: var(--userinfo-text-color);
    color: #ffffff;
    display: flex;
    flex-direction: column; /* Maintain column layout for other elements */
    flex: none;
    min-width: unset;
    max-width: unset;
    width: 100%;
}

div.box.box-featured a {
    color: #ffffff;
}

div.box.box-featured .button-container {
    display: flex;
    gap: 20px; /* Space between buttons */
    align-items: center;
    justify-content: start; /* Align buttons to the start of the container */
}

div.box.box-featured .button {
    flex: none; /* Prevent buttons from stretching */
    text-align: center;
}

div.box .button {
    border-radius: var(--border-radius-mid);
    padding: 10px;
    border: 1px solid var(--button-border-color);
    width: 150px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    color: #227E82; /* Button text color */
    background: transparent; /* Transparent background */
    transition: background-color 0.3s ease, color 0.3s ease;
}

div.box .featured-button-main {
    background-color: var(--header-background);
}

div.box .featured-button-secondary {
    background-color: transparent;
    border: 1px solid #ffffff;
}

div.box-description {
    font-weight: 300;
    margin-bottom: 16px;
}

iframe {
    width: 100%;
    min-height: 1500px;
    margin-bottom: 100px;
    border: unset;
}

/* Adjust spacing for icons */
.thumb-icon {
    margin-right: 10px;
    cursor: pointer;
}

.status-badge {
    font-size: 14px;
    font-weight: bold;
    vertical-align: middle;
}


/* --- Animations --- */
@keyframes fadeInTitle {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Header Content Styling --- */
.logo {
    max-height: 50px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

/* --- Container Styling --- */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 20px 20px 90px 20px;
}

section .content[data-user=""] {
    justify-items: center;
    max-width: 80%;
    margin: auto;
}

section .content h1 {
    font-size: 2rem;
    color: var(--textcolor);
}

section .content {
    max-width: 80%;
    flex-direction: column;
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

/* --- Process Section --- */
.process {
    background-color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.process-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.process-step {
    width: 25%;
}

.process-step h3 {
    color: var(--bluetext);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-image-placeholder {
    width: 200px;
    height: 300px;
    background-color: var(--white);
    border: 2px dashed var(--boxshadow);
}

/* --- Landscape Section --- */
.landscape {
    background-color: var(--bluetext);
    padding: 60px 20px;
    text-align: center;
    color: var(--white);
}

.landscape-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.landscape-grid p {
    font-size: 1.2rem;
}

/* --- IT Organization Section --- */
.it-organization {
    background-color: var(--white);
    padding: 60px 20px;
}

.it-organization-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.it-organization-image-placeholder {
    width: 300px;
    height: 300px;
    background-color: var(--white);
    border: 2px dashed var(--boxshadow);
}

/* --- User Info Box --- */
#user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#user-info-avatar {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 3px;
    gap: 10px;
    background-color: var(--white);
    border-radius: var(--border-radius-max);
    flex: none;
    order: 0;
    flex-grow: 0;
}

#user-info-avatar .avatar {
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 18px;
    font-weight: bold;
    margin-right: 5px;
}

#user-info-avatar .avatar.noimage {
    color: var(--white);
    background-color: var(--userinfo-text-color);
    border-radius: var(--border-radius-max);
    border: unset;
    font-weight: 500;
    font-size: unset;
    width: 20px;
    height: 20px;
}

#user-info-avatar p {
    margin: 0 10px 0 0;
    color: var(--userinfo-text-color);
}

#user-info-logout a.button {
    display: flex;
    align-items: center;
    padding: 11px;
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    background: var(--header-background);
}

#user-info-logout a.button img {
    display: flex;
    align-self: center;
    padding-right: 5px;
}


/* --- Microsoft Login Button --- */
.microsoft-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--header-background);
    color: var(--white);
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px var(--boxshadow);
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.microsoft-login img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.microsoft-login:hover {
    background-color: var(--microsoft-background);
    transform: scale(1.05);
}

.microsoft-login:active {
    background-color: var(--microsoft-active-background);
    transform: scale(1);
}

/* --- Text Danger Styling --- */
span.text-danger {
    color: var(--white);
    display: flex;
    justify-self: center;
    background-color: var(--red);
    padding: 20px;
    margin-bottom: 20px;
    font-weight: bold;
    animation: blink-animation 0.5s steps(1, start) 3;
}

/* --- Blink Animation --- */
@keyframes blink-animation {
    50% {
        opacity: 0;
    }
}

/* --- Modal Styling --- */
.modal {
    display: flex;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--modal-mask);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.modal__title {
    margin: 0;
}

.modal-content {
    background-color: var(--white);
    padding: 1rem;
    width: 300px;
    text-align: center;
    border-radius: 3px;
}

.login-modal-container {
    min-width: 400px;
    max-width: 80%;
    margin: 0 auto;
    padding: 2rem 2rem 3rem 2rem;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    box-shadow: 0px 5px 20px -10px black;
}

.modal__login-form {
    margin-top: 2rem;
}

.login-form__email-input {
    outline-color: transparent;
    transition-duration: 200ms;
    transition-property: outline-color, border-color;
}

.login-form__email-input:hover {
    border-color: var(--color-teal-1);
}

.login-form__email-input:focus {
    border-color: var(--color-teal-2);
    outline: solid 3px var(--color-teal-00);
}

#emailModal .close-btn {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border-radius: 50px;
    border: 1px solid var(--color-gray-4);
    color: var(--color-gray-4);
    font-size: 25px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-duration: 200ms;
    transition-property: color, background;
}

#emailModal .close-btn:hover {
    color: var(--white);
    background: var(--color-teal-2);
    border-color: var(--color-teal-2);
}

#emailModal .container {
    background-color: var(--white);
    padding: 0;
    border: 3px solid var(--bluetext);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

#emailModal .microsoft-login {
    margin-top: unset;
}

.close {
    position: absolute;
    right: 10px;
    top: 5px;
    cursor: pointer;
}

/* Newsfeed styles */
.newsfeed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--header-background);
    color: var(--white);
    font-weight: 300;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1000;
    padding: 10px 0;
}

.newsfeed-ticker {
    display: inline-block;
    animation: scroll-left 15s linear infinite;
    white-space: nowrap;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* --- Footer --- */
footer {
    display: none;
    background-color: var(--textcolor);
    color: var(--white);
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

/* --- Table Styling --- */

.dataTable__wrapper {
    margin-top: 3rem;
}

table {
    font-size: 14px;
    font-weight: 300;
    color: var(--textcolor);
    letter-spacing: 0.5px;
    /* border-radius: 10px; */
    overflow: hidden;
    /* box-shadow: 0 4px 8px var(--boxshadow); */
    width: 100%;
    margin: 20px 0;
}
.dataTables_scrollHead table {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.dataTables_scrollHead table thead tr {
    background: var(--color-teal-1);
}

table th, table td {
    padding: 14px 12px;
    vertical-align: middle;
    white-space: nowrap;
}

table th {
    color: var(--white);
    font-weight: bold;
    padding: 15px 10px;
    text-align: center;
}

table thead tr {
    background: var(--userinfo-text-color);
}

table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--greybackground);
    color: var(--textcolor);
}

table tr:nth-child(even) {
    background-color: var(--greywhite);
}

table tr:hover {
    background-color: var(--menu-background-color);
}

table.dataTable thead th, table.dataTable tfoot th {
    font-weight: 300 !important;
}

/* --- DataTables Controls --- */
.dataTables_length label {
    font-weight: bold;
    color: var(--textcolor);
}

.dataTables_filter label {
    font-weight: bold;
    color: var(--textcolor);
}

.dataTables_length select {
    padding: 5px 10px !important;
    border: 1px solid var(--greybackground) !important;
    border-radius: 5px !important;
    background-color: var(--greywhite) !important;
    color: var(--textcolor) !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.3s !important;
}

.dataTables_length select:hover {
    border-color: var(--color-teal-1) !important;
}

.dataTables_length select:focus {
    /* border-color: var(--bluetext) !important; */
}

.dataTables_filter input {
    width: 400px;
    padding: 6px 12px !important;
    border: 1px solid var(--greybackground) !important;
    border-radius: 5px !important;
    background-color: var(--greywhite) !important;
    color: var(--textcolor) !important;
    font-size: 14px !important;
    /* outline: none !important; */
    transition: border-color 0.3s !important;
}

.dataTables_filter input:hover {
    border-color: var(--color-teal-1) !important;
}

.dataTables_filter input:focus {
    border-color: var(--color-teal-1) !important;
    outline: 2px solid var(--color-teal-00);
}

.dataTables_paginate {
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    gap: 10px !important;
    font-size: 14px !important;
}

/* --- Pagination Button Styles --- */
.dataTables_paginate .paginate_button {
    color: var(--textcolor) !important;
    padding: 8px 16px !important;
    margin: 0 5px !important;
    border: 1px solid var(--greybackground) !important;
    border-radius: 5px !important;
    background: var(--greywhite) !important;
    cursor: pointer !important;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s !important;
}

.dataTables_paginate .paginate_button:hover {
    background: var(--bluetext) !important;
    color: var(--white) !important;
    border-color: var(--bluetext) !important;
}

.dataTables_paginate .paginate_button:active {
    background: var(--gradient1) !important;
    color: var(--white) !important;
    border-color: var(--gradient2) !important;
}

.dataTables_paginate .paginate_button.current {
    background: var(--gradient1) !important;
    color: var(--white) !important;
    border-color: var(--gradient2) !important;
}

.dataTables_paginate .paginate_button.disabled {
    color: var(--greybackground) !important;
    cursor: default !important;
    background: var(--white) !important;
    border-color: var(--greybackground) !important;
}

.dataTables_info {
    font-size: 14px;
    color: var(--textcolor) !important;
    padding: 10px 0;
    text-align: center;
    font-weight: 500;
}

.dataTables_info, .dataTables_length, .dataTables_filter {
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: middle;
}

.name-cell {
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- Row Animations for DataTables --- */
@keyframes rowSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

table.dataTable tbody tr {
    animation: rowSlideIn 0.6s ease-out forwards;
    animation-delay: calc(0.1s * var(--row-index));
    opacity: 0;
}

table.dataTable tbody tr:hover {
    transform: scale(1.02);
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    /* transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

table.dataTable tbody tr:hover {
    background-color: rgb(34, 126, 130, 0.1);
}

table.dataTable tbody tr {
    position: relative;
    transition: all 0.3s ease;
}

/* --- Form Styles --- */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--greybackground);
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

.file-upload p {
    margin-top: 10px;
    color: var(--greybackground);
}

button.button {
    /* background-color: var(--blue); */
    /* color: var(--white); */
    /* padding: 10px 20px; */
    /* border: none; */
    /* border-radius: 5px; */
    /* font-size: 16px; */
    /* cursor: pointer; */
}

button.button:hover {
    /* background-color: var(--blue); */
}

/* --- Status Bar Styling --- */
#status-bar {
    border-radius: 5px;
}

/* --- Loader Container --- */
#loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--boxshadow);
    z-index: 10000;
}

/* --- Loader Animations --- */
.loader {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-image: conic-gradient(from 0deg at 45% 47%, #227e82 0%, #073AFF00 100%),conic-gradient(from 0deg at 17% -2%, #114c50 33%, #FF000000 99%),conic-gradient(from 180deg at 83% 7%, #FF000000 99%, #4d8eb3 665%);
    animation: spin 1.5s linear infinite, bounce 0.6s ease-in-out infinite alternate, explode 5s ease-in-out forwards;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 35px rgba(255, 255, 255, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.5);
}

@keyframes spin {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes explode {
    80% {
        transform: scale(2);
        opacity: 1;
        box-shadow: 0 0 80px rgba(255, 255, 255, 0.6), 0 0 120px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: scale(5);
        opacity: 0;
        box-shadow: 0 0 300px rgba(255, 255, 255, 1), 0 0 400px rgba(255, 255, 255, 0.9);
    }
}

@keyframes fadeOutLoader {
    to { opacity: 0; visibility: hidden; }
}

/* --- DataTables Button Styling --- */
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    color: var(--userinfo-text-color) !important;
}
.dt-button.buttons-collection.buttons-colvis {
    background-color: var(--userinfo-text-color);
    color: var(--white);
    font-weight: bold;
    border-radius: 4px;
    padding: 8px 16px;
    transition: background-color 0.3s ease;
    border: none;
    margin: 0 10px;
}

div.dt-button-collection {
    background-color: var(--bluetext);
    color: var(--white);
    font-weight: bold;
    border-radius: 4px !important;
    padding: 8px 16px !important;
    transition: background-color 0.3s ease;
    border: none !important;
    margin: 0 10px;
}

div.dt-button-collection .dt-button:active:not(.disabled),
div.dt-button-collection .dt-button.active:not(.disabled),
div.dt-button-collection a.dt-button:active:not(.disabled),
div.dt-button-collection a.dt-button.active:not(.disabled) {
    background-color: var(--bluetext) !important;
    background: linear-gradient(to bottom, #f0f0f0 0%, var(--userinfo-text-color) 100%) !important;
    box-shadow: inset 1px 1px 3px var(--greybackground) !important;
}

.dt-button.buttons-collection.buttons-colvis:hover {
    background-color: var(--bluetext);
}

.dt-button-collection {
    border-radius: 6px;
    overflow: hidden;
    background-color: #f7f7f9;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    border: none;
}

.dt-button-collection .dt-button {
    color: var(--white);
    background: var(--gradient-background);
    font-size: 14px;
    padding: 10px 20px;
    width: 100%;
    text-align: left;
    border: none;
    transition: background-color 0.2s ease;
}

.dt-button-collection .dt-button:hover {
    background-color: #e6e6e6;
    color: var(--textcolor);
}

.dt-button-background {
    background: rgba(0, 0, 0, 0.3);
}

.dt-button-background:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* Tablets (portrait) */
@media (max-width: 960px) {
    .hero__layout {
        flex-direction: column-reverse;
    }

    .dataTable__wrapper {
        margin: 2rem 1rem 2rem 1rem;
    }
}

/* Smartphones */
@media (max-width: 480px) {
    .login-modal-container {
        min-width: 95%;
        max-width: 95%;
        padding: 1rem 1rem 1.5rem 1rem;
        box-sizing: border-box;
    }

    .button {
        padding: 1rem;
    }

    .hero__title {
        margin-top: 2.5rem;
    }

    .hero__layout {
        margin-top: 2rem;
    }

    .hero__layout--guest {
        margin-top: 1rem;
    }

    .cta__title {
        font-size: 1.3rem;
    }

    .top-nav {
        padding: .5rem;
    }

    .dataTable__wrapper {
        margin: .5rem .5rem 1rem .5rem;
    }
}

