:root {
    --color-primary: #004B68;
    --color-secondary: #0BA1E3;
    --color-white: #fff;
    --color-gray: #555;
    --color-lightgray: #f0f0f0;
    --color-text: #333;
    --color-border: #e0e0e0;
    --spacing-sm: 16px;
    --spacing-md: 20px;
    --spacing-lg: 40px;
}

.txt-white {
    color: var(--color-white);
}

.fs-2 {
    font-size: 15px;
}

.pt-2,
.pb-2,
.pt-3,
.pt-5,
.mt-2,
.mt-3,
.mt-5,
.mr-5,
.ml-5 {
    --value: 0;
}

.pt-2 {
    padding-top: 20px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-5 {
    padding-top: 50px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.mr-5 {
    margin-right: 50px;
}

.ml-5 {
    margin-left: 50px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.home-title {
    color: var(--color-primary);
}

/* Componentes */
.button-wrapper-center {
    display: flex;
    align-items: center;
}

.button-primary-rec {
    width: 200px;
}

.c-steps-list {
    max-width: 50%;
    margin: 0 auto;
}

.c-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.c-step>div {
    flex: 1;
}

.c-step-number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #009DE1;
    color: var(--color-white);
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.c-step-text {
    font-size: 16px;
    color: var(--color-text);
}

.c-step-description {
    margin-top: 5px;
    color: var(--color-gray);
    font-size: 14px;
    line-height: 1.4;
}

/* .bg-cyan {
    background-color: #0BA1E3;
}

.three-columns-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.three-columns-flex>div {
    flex: 1;
}

.three-columns-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.three-columns-flex>div {
    flex: 1 1 30%;
    min-width: 250px;
}

.br-desktop {
    display: none;
}

@media (max-width: 992px) {
    .three-columns-flex>div {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .three-columns-flex>div {
        flex: 1 1 100%;
    }
}

@media (min-width: 768px) {
    .br-desktop {
        display: inline;
    }
}

.row-4-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.col {
    flex: 0 0 22%;
    max-width: 22%;
    background-color: #f0f0f0;
    padding: 16px;
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .col {
        flex: 1 1 100%;
    }
}

.custom-navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    margin: 0 auto;
}

.custom-navbar-top {
    align-items: stretch;
    background-color: #004B68;
    padding: 0px 40px;
    height: 56px;
}

.custom-navbar-bottom {
    align-items: center;
    background-color: #FFFFFF;
    height: 114px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-navbar-top .custom-navbar-left,
.custom-navbar-top .custom-navbar-right,
.custom-navbar-bottom .custom-navbar-center,
.custom-navbar-bottom .custom-navbar-right {
    display: flex;
}

.custom-navbar a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-navbar-top a {
    color: white;
}

.custom-navbar-top a:hover {
    background-color: #0BA1E3;
}

.custom-navbar-bottom a:hover {
    background-color: rgb(212, 212, 212);
}

.custom-navbar-bottom a {
    color: #7E868D;
}

.custom-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 0 10px;
}

.custom-hamburger span {
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
}

.custom-hamburger-white {
    background-color: white;
}

.custom-hamburger-black {
    background-color: black;
}

@media (max-width: 768px) {
    .custom-navbar {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .custom-hamburger {
        display: flex;
        margin: 10px auto;
        padding: 10px 0;
    }

    .custom-navbar-top .custom-navbar-left,
    .custom-navbar-top .custom-navbar-right,
    .custom-navbar-bottom .custom-navbar-center,
    .custom-navbar-bottom .custom-navbar-right {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .custom-navbar-top.active .custom-navbar-left,
    .custom-navbar-top.active .custom-navbar-right,
    .custom-navbar-bottom.active .custom-navbar-center,
    .custom-navbar-bottom.active .custom-navbar-right {
        max-height: 500px;
    }

    .custom-navbar-top a {
        padding: 10px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        justify-content: center;
        text-align: center;
    }

    .custom-navbar-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .custom-navbar-bottom .custom-navbar-center,
    .custom-navbar-bottom .custom-navbar-right {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: #FFFFFF;
    }

    .custom-navbar-bottom.active .custom-navbar-center,
    .custom-navbar-bottom.active .custom-navbar-right {
        display: flex;
    }

    .custom-navbar-bottom a {
        padding: 10px 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        justify-content: center;
        text-align: center;
    }

    .custom-navbar-bottom img {
        margin-bottom: 10px;
    }
}

.container {
    margin: 5rem 7rem 0px 7rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

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

thead {
    background-color: #f8f8f8;
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid #e0e0e0;
}

th {
    font-weight: 600;
}

td:last-child {
    display: flex;
    gap: 10px;
    align-items: center;
}



.icon {
    cursor: pointer;
    margin-right: 5px;
}

.icon:hover {
    opacity: 1;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.pagination button {
    border: none;
    background: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.pagination button.active {
    background-color: #e0e0e0;
    font-weight: bold;
}

.pagination button:hover:not(.active) {
    background-color: #f2f2f2;
}

@media (max-width: 768px) {

    .container {
        margin: 5rem 1rem 0px 1rem;
    }

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        background-color: #fff;
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
        position: relative;
    }

    tr::before {
        content: attr(data-title);
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #333;
    }

    td {
        padding: 10px 16px;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        color: #666;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .icon {
        background-color: #f0f0f0;
        padding: 6px;
        border-radius: 8px;
        font-size: 16px;
        transition: background-color 0.2s ease;
    }

    .icon:hover {
        background-color: #ddd;
    }

    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.pagination {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
} */

.bg-cyan {
    background-color: var(--color-secondary);
}

/* ========== LAYOUT FLEX COLUMNAS ========== */
.three-columns-flex {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: space-between;
}

.three-columns-flex>div {
    flex: 1 1 30%;
    min-width: 250px;
}

@media (max-width: 992px) {
    .three-columns-flex>div {
        flex: 1 1 45%;
    }
}

@media (max-width: 600px) {
    .three-columns-flex>div {
        flex: 1 1 100%;
    }
}

/* ========== SALTOS DE LÍNEA RESPONSIVOS ========== */
.br-desktop {
    display: none;
}

@media (min-width: 768px) {
    .br-desktop {
        display: inline;
    }
}

/* ========== FILA DE 4 COLUMNAS ========== */
.row-4-cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.col {
    flex: 0 0 22%;
    max-width: 22%;
    background-color: var(--color-lightgray);
    padding: var(--spacing-sm);
    text-align: center;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .col {
        flex: 1 1 100%;
    }
}

/* ========== NAVBAR PERSONALIZADO ========== */
.custom-navbar {
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    margin: 0 auto;
}

.custom-navbar-top {
    background-color: var(--color-primary);
    height: 56px;
    padding: 0 var(--spacing-lg);
    align-items: stretch;
}

.custom-navbar-bottom {
    background-color: var(--color-white);
    height: 114px;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-navbar a {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 var(--spacing-sm);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.custom-navbar-top a {
    color: var(--color-white);
}

.custom-navbar-top a:hover {
    background-color: var(--color-secondary);
}

.custom-navbar-bottom a {
    color: var(--color-gray);
}

.custom-navbar-bottom a:hover {
    background-color: #d4d4d4;
}

.custom-navbar-top .custom-navbar-left,
.custom-navbar-top .custom-navbar-right,
.custom-navbar-bottom .custom-navbar-center,
.custom-navbar-bottom .custom-navbar-right {
    display: flex;
}

/* ========== HAMBURGER MENU ========== */
.custom-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    padding: 0 10px;
}

.custom-hamburger span {
    height: 3px;
    width: 25px;
    margin: 4px 0;
    border-radius: 2px;
}

.custom-hamburger-white {
    background-color: var(--color-white);
}

.custom-hamburger-black {
    background-color: black;
}

/* ========== NAVBAR RESPONSIVE ========== */
@media (max-width: 768px) {
    .custom-navbar {
        flex-direction: column;
        align-items: center;
        height: auto;
    }

    .custom-hamburger {
        display: flex;
        margin: 10px auto;
        padding: 10px 0;
    }

    .custom-navbar-top .custom-navbar-left,
    .custom-navbar-top .custom-navbar-right,
    .custom-navbar-bottom .custom-navbar-center,
    .custom-navbar-bottom .custom-navbar-right {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .custom-navbar-top.active .custom-navbar-left,
    .custom-navbar-top.active .custom-navbar-right,
    .custom-navbar-bottom.active .custom-navbar-center,
    .custom-navbar-bottom.active .custom-navbar-right {
        max-height: 500px;
    }

    .custom-navbar-top a,
    .custom-navbar-bottom a {
        padding: 10px 20px;
        text-align: center;
        justify-content: center;
    }

    .custom-navbar-top a {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .custom-navbar-bottom {
        padding: 20px 0;
        flex-direction: column;
        align-items: center;
    }

    .custom-navbar-bottom .custom-navbar-center,
    .custom-navbar-bottom .custom-navbar-right {
        display: none;
        flex-direction: column;
        text-align: center;
        width: 100%;
        background-color: var(--color-white);
    }

    .custom-navbar-bottom.active .custom-navbar-center,
    .custom-navbar-bottom.active .custom-navbar-right {
        display: flex;
    }

    .custom-navbar-bottom img {
        margin-bottom: 10px;
    }
}

/* ========== CONTENEDOR Y TABLA ========== */
.container {
    margin: 5rem 7rem 0 7rem;
}

@media (max-width: 768px) {
    .container {
        margin: 5rem 1rem 0 1rem;
    }
}

.table-container {
    overflow-x: auto;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

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

thead {
    background-color: #f8f8f8;
}

th,
td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--color-border);
}

th {
    font-weight: 600;
}

@media (min-width: 769px) {
    table.dataTable tbody tr {
        line-height: 3 !important;
        /* ajusta según lo que quieras */
    }
}

/* ========== ICONOS Y PAGINACIÓN ========== */
.icon {
    cursor: pointer;
    margin-right: 5px;
}

.icon:hover {
    opacity: 1;
}

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.pagination button {
    border: none;
    background: none;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
}

.pagination button.active {
    background-color: var(--color-border);
    font-weight: bold;
}

.pagination button:hover:not(.active) {
    background-color: #f2f2f2;
}

/* ========== TABLA RESPONSIVE ========== */
@media (max-width: 768px) {

    table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    thead {
        display: none;
    }

    tr {
        background-color: white !important;
        /* Fondo blanco siempre */
        box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.05);
        padding: 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    tr::before {
        content: attr(data-title);
        display: block;
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 12px;
        color: #333;
    }

    td {
        padding: 10px 16px;
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        display: block;
        color: #666;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .icon {
        background-color: var(--color-lightgray);
        padding: 6px;
        border-radius: 8px;
        font-size: 16px;
        transition: background-color 0.2s ease;
    }

    .icon:hover {
        background-color: #ddd;
    }

    .pagination {
        justify-content: center;
        flex-wrap: wrap;
    }

    td:last-child {
        display: flex;
        gap: 10px;
        align-items: center;
    }
}

/* ========== FORMULARIOS ========== */
.form-container {
    max-width: 700px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
}

input,
select,
textarea {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.form-row-full {
    margin-bottom: 15px;
}

.form-row-full textarea {
    width: 100%;
    resize: vertical;
}

button {
    padding: 10px 20px;
    background-color: #1976d2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #1565c0;
}

.password-requirements {
    margin-top: 6px;
    font-size: 13px;
    color: #666;
    padding-left: 18px;
    line-height: 1.4;
}

.password-requirements li {
    margin-bottom: 4px;
    list-style-type: disc;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-content {
        margin-left: 10%;
        margin-right: 10%;
    }
}

















/* Contenedor de la paginación */
.dataTables_paginate {
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    gap: 8px !important;
}

/* Botones normales */
.paginate_button {
    padding: 8px 12px !important;
    background-color: #f1f1f1 !important;
    border: 1px solid #ccc !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    color: #333 !important;
    transition: background-color 0.3s, color 0.3s !important;
}

/* Hover */
.paginate_button:hover {
    background-color: #e0e0e0 !important;
    color: #eeeeee !important;
}

/* Botón activo */
.paginate_button.current {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
}

/* Botones deshabilitados */
.paginate_button.disabled {
    background-color: #ddd !important;
    color: #999 !important;
    cursor: not-allowed !important;
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.search-group {
    display: flex;
    gap: 0.5rem;
    max-width: 600px;
}

.search-group input {
    flex-grow: 1;
    padding: 0.5rem;
    font-size: 1rem;
}

.disable-resize {
    resize: none;
}

/* detalle vacante */

.dv-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.dv-section-title {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.dv-section-title span {
    background-color: #e0ebf5;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    font-size: 25px;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.dv-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.dv-profile {
    display: flex;
    align-items: center;
}

.dv-avatar {
    width: 75px;
    height: 75px;
    background-color: #e0f0fd;
    border-radius: 50%;
    border: solid;
    border-width: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
}

.dv-info {
    display: flex;
    flex-direction: column;
}

.dv-info .name {
    font-weight: bold;
}

.dv-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.dv-actions a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dv-actions a:hover {
    text-decoration: underline;
}

.dv-calendar-time {
    font-weight: bold;
}

.dv-divider {
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.dv-action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* espacio entre botones */
}

.nw-card {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 1vw 5vw;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nw-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
}

.nw-profile {
    display: flex;
    align-items: center;
}

.nw-avatar {
    width: 100px;
    height: 100px;
    background-color: #e0f0fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.nw-info {
    display: flex;
    flex-direction: column;
}

.nw-contact-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.nw-download {
    text-align: right;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
}

.nw-span-title {
    font-size: 1.17em;
    font-weight: bold;
}

/*---------------VISTA DETALLE VACANTE----------- */

.dc-container-fit {
    color: #6c757d;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 20px;
    padding: 16px 20px;
    text-decoration: none;
}

.dc-container {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    padding: 2vw 5vw;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.dc-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .dc-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}

.dc-profile {
    display: flex;
    align-items: center;
}

.dc-avatar {
    width: 100px;
    height: 100px;
    background-color: #e0f0fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    flex-shrink: 0;
}

.dc-info {
    display: flex;
    flex-direction: column;
}

.dc-info .dc-name {
    font-size: 20px;
    font-weight: bold;
}

.dc-info .dc-position {
    color: #666;
    margin-top: 5px;
}

.dc-contact-info {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 14px;
}

.dc-download {
    text-align: right;
    font-size: 14px;
    cursor: pointer;
    align-self: flex-start;
}

.dc-section {
    margin-bottom: 30px;
}

.dc-section h3 {
    margin-bottom: 10px;
    font-size: 18px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.dc-experience-item {
    margin-bottom: 15px;
}

.dc-experience-item .dc-title {
    font-weight: bold;
}

.dc-experience-item .company {
    color: #666;
    font-size: 14px;
}

.dc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dc-img-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

@media (min-width: 768px) {
    .dc-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.dc-file-link {
    margin-top: 10px;
}

.dc-file-link a {
    text-decoration: none;
    color: #007bff;
    word-break: break-all;
}

.dc-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .dc-actions {
        flex-direction: row;
        justify-content: space-between;
    }
}

.dc-btn {
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid transparent;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.dc-btn-danger {
    background-color: #fff;
    color: #ff4d4d;
    border-color: #ff4d4d;
}

.dc-btn-danger:hover {
    background-color: #ff4d4d;
    color: white;
}

.dc-btn-success {
    background-color: #ccffcc;
    color: #2e7d32;
    border-color: #2e7d32;
}

.dc-btn-success:hover {
    background-color: #2e7d32;
    color: white;
}

.flex {
    display: flex;
}

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

.modal-content {
    background-color: #f3f3f3;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 1400px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: black;
}