:root {
    --primary-color: #2193e8;
    --primary-color-hover: #1a75bb;
    --primary-color-rgb: 76, 175, 80;
    --secondary-color: #2196F3;
    --success-color: #2193e8;
    --warning-color: #FF9800;
    --danger-color: #f44336;
    --info-color: #2196F3;
    --light-color: #c4c4c4;
    --light-color-2: #a8a8a8;

    --dark-color: #333;
    --gray-color: #666;

    --shadow: 0px 5px 4px rgba(0, 0, 0, 0.15);
    --shadow-2: 0px 4px 16px rgba(0, 0, 0, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    display: flex;
    justify-content: center;
}

button {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.app-container {
    width: 1200px;
}

.background-image-layer {
    position: fixed;
    z-index: -2;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-size: cover;
    background-position: center;
    filter: blur(6px);
}

.image-layer-bg {
    position: fixed;
    z-index: -2;
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
    background-size: cover;
    background-position: center;
    filter: blur(6px);
}

.background-overlay {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-wrap: nowrap;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-hover));
    color: white;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary iconify-icon {
    font-size: 18px;
}

.btn-secondary {
    background: #ffffff;
    color: #1F2937;
    border: 1px solid #D2D6DC;
}

.btn-secondary:hover {
    background: #e9e9e9;
    border-color: #ccc;
    transform: translateY(-2px);
}

.btn-secondary-2 {
    background: #ffffff;
    color: #1F2937;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(-2px);
    font-weight: 600 !important;
    font-size: 15px !important;
}

.btn-secondary-2 iconify-icon {
    font-size: 17px;
}

.btn-secondary-2:hover {
    background: #e9e9e9;
}

.btn-secondary-3 {
    background: #ffffff;
    color: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(-2px);
    font-weight: 600 !important;
    font-size: 15px !important;
}

.btn-secondary-3 iconify-icon {
    font-size: 17px;
}

.btn-secondary-3:hover {
    background: #e9e9e9;
}

.btn-danger {
    background: #f44336;
    color: white;
}

.btn-danger:hover {
    background: #da190b;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #ffffff;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

select {
    cursor: pointer;
}

input[readonly] {
    cursor: not-allowed;
    color: var(--light-color-2);
}

.input-button {
    border-radius: 99999999999px;
    border: none;
    box-shadow: var(--shadow);
    width: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    padding: 5px 4px;
    padding-left: 15px;
    height: 100%;
    font-size: 16px !important;
    font-weight: 450 !important;
}

.input-button input {
    border-radius: 99999999999px;
    border: none;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
    background-color: transparent !important;
    padding: 0;
    padding-left: 5px;
    font-size: 16px;
}

.input-button button {
    border-radius: 999999999px !important;
    background: linear-gradient(to right, #25B85B, #197C3F);
    border: none;
    color: #ffffff;
    height: 36px !important;
    width: 36px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
    cursor: pointer;
}

.input-button button iconify-icon {
    font-size: 18px;
}

.content-container select,
.content-container input[type="text"]{
    border: none;
    box-shadow: var(--shadow-2);
}

.content-container .table-header input[type="text"] {
    width: 100%;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select-wrapper select {
    appearance: none;
    width: 100%;
    padding-right: 2rem;
}

.select-wrapper iconify-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1rem;
    color: black;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #ffffff !important;
    width: 100%;
}

.form-group input:focus:not([readonly]),
.form-group select:focus:not([readonly]) {
    outline: none;
    border-color: var(--primary-color);
}

.input-with-icon {
    position: relative;
}

.input-with-icon iconify-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.custom-date {
    position: relative;
}

.custom-date iconify-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 18px;
}

.input-2 {
    border: none !important;
    outline: none;
    text-align: center;
    font-size: 11px !important;
    height: 230px;
    width: 100%;
    overflow: hidden;
}

.swal2-container {
    backdrop-filter: blur(8px);
}

.contenedor-toast {
    background-color: none !important;
    backdrop-filter: none !important;
}

.swal2-actions {
    display: flex;
    gap: 20px !important;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}