/* Hell Tattoo - Estilos Modernos Padronizados */

/* ===== VARIÁVEIS CSS ===== */
:root {
    --primary-black: #000000;
    --dark-gray-1: #222324;
    --dark-gray-2: #212223;
    --dark-gray-3: #1f2123;
    --gold-beige: #d19f68;
    --gold-beige-hover: #c18f58;
    --white: #ffffff;
    --surface: #F7F4F0;
    --text-primary: #222324;
    --text-secondary: #212223;
    --text-light: #666666;
    --status-ok: #2E7D32;
    --status-warn: #C77800;
    --status-alert: #C62828;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-strong: rgba(0, 0, 0, 0.3);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

/* ===== TIPOGRAFIA PADRONIZADA ===== */
.hell-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 16px;
}

.hell-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.3px;
    line-height: 1.3;
    margin-bottom: 12px;
}

.hell-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hell-text-small {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
}

/* ===== CARDS PADRONIZADOS ===== */
.hell-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 50px 40px;
    max-width: 950px;
    width: 100%;
    min-height: 600px;
    box-shadow: 0 15px 40px var(--shadow-strong), 0 5px 15px var(--shadow-medium);
    border: 1px solid rgba(209, 159, 104, 0.1);
    position: relative;
    transition: var(--transition);
}

.hell-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px var(--shadow-strong), 0 8px 20px var(--shadow-medium);
}

.hell-card-compact {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    max-width: 800px;
    width: 100%;
    min-height: 400px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    border: 1px solid rgba(209, 159, 104, 0.1);
    position: relative;
    transition: var(--transition);
}

.hell-card-small {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    max-width: 400px;
    width: 100%;
    min-height: 200px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    border: 1px solid rgba(209, 159, 104, 0.1);
    position: relative;
    transition: var(--transition);
}

/* ===== BOTÕES PADRONIZADOS ===== */
.btn,
.btn-login,
.hell-btn-primary,
.hell-btn-secondary,
.hell-btn-whatsapp,
.hell-btn-outline,
.hell-btn-gold,
button:not(.close):not(.btn-close):not(.navbar-toggler),
input[type="submit"],
input[type="button"],
input[type="reset"],
.hell-listing .dataTables_wrapper .dataTables_paginate .paginate_button {
    text-transform: uppercase;
}

.hell-btn-primary {
    background: var(--gold-beige);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(209, 159, 104, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hell-btn-primary:hover {
    background: var(--gold-beige-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 159, 104, 0.4);
    color: var(--white);
    text-decoration: none;
}

.hell-btn-secondary {
    background: var(--dark-gray-1);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.hell-btn-secondary:hover {
    background: var(--dark-gray-3);
    transform: translateY(-1px);
    color: var(--white);
    text-decoration: none;
}

.hell-btn-whatsapp {
    background: var(--gold-beige);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(209, 159, 104, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hell-btn-whatsapp:hover {
    background: var(--gold-beige-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(209, 159, 104, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* ===== FORMULÁRIOS PADRONIZADOS ===== */
.hell-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
}

.hell-input:focus {
    outline: none;
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 3px rgba(209, 159, 104, 0.1);
}

.hell-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.hell-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
    box-sizing: border-box;
    cursor: pointer;
}

.hell-select:focus {
    outline: none;
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 3px rgba(209, 159, 104, 0.1);
}

/* ===== BACKGROUNDS PADRONIZADOS ===== */
.hell-bg-gradient {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray-3) 50%, var(--gold-beige) 100%);
    position: relative;
}

.hell-bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 20px);
    background-blend-mode: overlay;
    pointer-events: none;
}

/* ===== FOOTER PADRONIZADO ===== */
.hell-footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 40px 15px;
    text-align: center;
    margin-top: 50px;
    width: 100vw;
    position: relative;
    left: 0;
}

.hell-footer img {
    width: 120px;
    margin-bottom: 15px;
    filter: brightness(1.1);
}

.hell-footer a {
    color: var(--gold-beige);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hell-footer a:hover {
    color: var(--gold-beige-hover);
    text-decoration: underline;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hell-card {
        padding: 30px 20px;
        min-height: 500px;
        max-width: 100%;
        margin: 0 15px;
    }
    
    .hell-card-compact {
        padding: 25px 20px;
        min-height: 350px;
        max-width: 100%;
        margin: 0 15px;
    }
    
    .hell-title {
        font-size: 24px;
    }
    
    .hell-subtitle {
        font-size: 18px;
    }
    
    .hell-text {
        font-size: 15px;
    }
    
    .hell-btn-primary,
    .hell-btn-whatsapp {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hell-card {
        padding: 25px 15px;
        min-height: 450px;
        margin: 0 10px;
    }
    
    .hell-card-compact {
        padding: 20px 15px;
        min-height: 300px;
        margin: 0 10px;
    }
    
    .hell-title {
        font-size: 22px;
    }
    
    .hell-subtitle {
        font-size: 16px;
    }
    
    .hell-text {
        font-size: 14px;
    }
    
    .hell-btn-primary,
    .hell-btn-whatsapp {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hell-fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== UTILITÁRIOS ===== */
.hell-text-center {
    text-align: center;
}

.hell-text-left {
    text-align: left;
}

.hell-text-right {
    text-align: right;
}

.hell-mb-0 { margin-bottom: 0; }
.hell-mb-1 { margin-bottom: 8px; }
.hell-mb-2 { margin-bottom: 16px; }
.hell-mb-3 { margin-bottom: 24px; }
.hell-mb-4 { margin-bottom: 32px; }

.hell-mt-0 { margin-top: 0; }
.hell-mt-1 { margin-top: 8px; }
.hell-mt-2 { margin-top: 16px; }
.hell-mt-3 { margin-top: 24px; }
.hell-mt-4 { margin-top: 32px; }

.hell-p-0 { padding: 0; }
.hell-p-1 { padding: 8px; }
.hell-p-2 { padding: 16px; }
.hell-p-3 { padding: 24px; }
.hell-p-4 { padding: 32px; }

/* ===== LISTAGEM DE CLIENTES — GRID FLUTUANTE CLEAN ===== */
.content-wrapper:has(.hell-listing) {
    background: var(--surface) !important;
    overflow-x: hidden;
}

.hell-listing {
    padding: 8px 8px 32px;
    font-family: "Source Sans Pro", "Segoe UI", sans-serif;
    color: var(--text-primary);
    max-width: 100%;
    min-width: 0;
    overflow-x: hidden;
}

.hell-listing-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    position: sticky;
    left: 0;
    z-index: 3;
}

.hell-listing-top .hell-listing-actions {
    margin-left: auto;
    flex-shrink: 0;
}

.hell-page-length {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    white-space: nowrap;
}

.hell-page-length .form-control {
    width: auto;
    min-width: 88px;
    height: 38px;
    border-radius: 8px;
    border-color: #e4e0d8;
    font-size: 14px;
    background: #fff;
}

.hell-page-length .form-control:focus {
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-listing-top h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2b2c2d;
    letter-spacing: -0.4px;
}

.hell-listing-actions {
    display: flex;
    gap: 10px;
}

.hell-btn-outline {
    background: transparent !important;
    color: #8a6d49 !important;
    border: 1px solid #d4b896 !important;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.6px;
    font-size: 12px;
    padding: 8px 18px;
}

.hell-btn-outline:hover,
.hell-btn-outline.is-active {
    background: rgba(209, 159, 104, 0.12) !important;
    color: #6f5536 !important;
    border-color: var(--gold-beige) !important;
}

.hell-btn-gold {
    background: #f4eadb !important;
    color: #8a6d49 !important;
    border: 1px solid #e2c9a4 !important;
    border-radius: 8px;
    font-weight: 600 !important;
    letter-spacing: 0.6px;
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding: 8px 18px !important;
}

.hell-btn-gold:hover {
    background: #ead9c0 !important;
    color: #6f5536 !important;
    border-color: #d4b896 !important;
}

.hell-filter-panel {
    background: #fff;
    border: 1px solid rgba(34, 35, 36, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.hell-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.hell-filter-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hell-filter-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.hell-filter-field .form-control {
    height: 38px;
    border-radius: 8px;
    border-color: #e4e0d8;
    font-size: 14px;
}

.hell-filter-field .form-control:focus {
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-filter-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.hell-listing-card,
.hell-listing .card-body {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 8px 8px 16px;
    overflow: auto;
    max-width: 100%;
    min-width: 0;
}

.hell-listing-card:has(.hell-table-scroll) {
    overflow: visible;
}

.hell-listing .dataTables_wrapper {
    width: 100%;
    max-width: 100%;
}

.hell-listing .hell-table-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 18px 4px;
}

.hell-listing .hell-table-scroll {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.hell-listing .hell-table-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    background: #fff;
}

.hell-listing .card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.hell-listing .card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    background: transparent !important;
    border: none !important;
    color: #2b2c2d;
    padding: 0 4px 16px;
}

.hell-listing .card-header h5,
.hell-listing .card-header h3,
.hell-listing .card-header .card-title,
.hell-listing .card-body > h5 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2b2c2d;
    letter-spacing: -0.4px;
    flex: 1 1 auto;
}

.hell-listing .card-header h6 {
    flex: 1 0 100%;
    order: 3;
    margin: 0;
    color: #8a6d49;
    font-size: 14px;
    font-weight: 400;
}

.hell-listing .card-header .hell-listing-actions {
    margin-left: auto;
}

.hell-listing hr {
    border: none;
    border-top: 1px solid #eeeae4;
    margin: 12px 8px;
}

.hell-listing table {
    background: transparent;
    border: none;
    width: 100% !important;
}

.hell-listing table thead th,
.hell-listing .thead-dark th {
    background: transparent !important;
    color: #555 !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: none !important;
    border-bottom: 1px solid #eeeae4 !important;
    padding: 16px 18px !important;
    white-space: nowrap;
    vertical-align: middle;
}

.hell-listing table tbody td {
    background: transparent !important;
    color: #333333;
    font-size: 12px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #eeeae4 !important;
    padding: 18px 16px !important;
    vertical-align: middle;
}

.hell-listing table.table-striped tbody tr:nth-of-type(odd),
.hell-listing table tbody tr,
.hell-listing table.dataTable tbody tr.odd,
.hell-listing table.dataTable tbody tr.even,
.hell-listing table.dataTable tbody tr.odd > .sorting_1,
.hell-listing table.dataTable tbody tr.even > .sorting_1,
.hell-listing table.dataTable.display tbody tr.odd > .sorting_1,
.hell-listing table.dataTable.display tbody tr.even > .sorting_1,
.hell-listing table.dataTable.stripe tbody tr.odd,
.hell-listing table.dataTable.hover tbody tr:hover,
.hell-listing table.dataTable.display tbody tr:hover {
    background: transparent !important;
    background-color: transparent !important;
}

.hell-listing table tbody tr:hover td {
    background: #fbf8f3 !important;
}

.hell-listing table tbody td a,
.hell-listing table tbody td abbr,
.hell-listing table tbody td .fa,
.hell-listing table tbody td .svg-inline--fa {
    font-weight: 400;
    color: #8a6d49 !important;
}

.hell-listing .btn-success,
.hell-listing .btn-primary,
.hell-listing .btn-info,
.hell-listing .btn-outline-dark,
.hell-listing .btn-secondary,
.hell-listing input.btn-success,
.hell-listing input.btn-primary,
.hell-listing input.btn-outline-dark {
    background: transparent !important;
    color: #8a6d49 !important;
    border: 1px solid #d4b896 !important;
    border-radius: 8px;
    font-weight: 600 !important;
    letter-spacing: 0.6px;
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding: 8px 18px !important;
    box-shadow: none !important;
    text-transform: uppercase;
}

.hell-listing .btn-success:hover,
.hell-listing .btn-primary:hover,
.hell-listing .btn-info:hover,
.hell-listing .btn-outline-dark:hover,
.hell-listing .btn-secondary:hover,
.hell-listing input.btn-success:hover,
.hell-listing input.btn-primary:hover {
    background: rgba(209, 159, 104, 0.12) !important;
    color: #6f5536 !important;
    border-color: var(--gold-beige) !important;
}

.hell-listing table.dataTable.no-footer,
.hell-listing table.dataTable thead th,
.hell-listing table.dataTable thead td,
.hell-listing table.dataTable tbody td {
    border-left: none !important;
    border-right: none !important;
}

.hell-listing table.dataTable.no-footer {
    border-bottom: none !important;
}

.hell-client-cell {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: 100%;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.hell-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    cursor: help;
}

.hell-status-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
}

.hell-status-dot[data-tip]::after {
    content: attr(data-tip);
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    transform: translateX(-50%);
    padding: 6px 10px;
    background: #1f1e1d;
    color: #f7f4f0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    white-space: nowrap;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    opacity: 0;
    pointer-events: none;
    z-index: 30;
}

.hell-status-dot[data-tip]:hover::after,
.hell-status-dot[data-tip]:focus::after {
    opacity: 1;
}

.hell-dot-ok { background: var(--status-ok); }
.hell-dot-warn { background: var(--status-warn); }
.hell-dot-alert { background: var(--status-alert); }

.hell-client-name {
    color: #333333;
    font-size: 13px;
    font-weight: 400 !important;
    white-space: nowrap;
}

.hell-client-name:hover {
    color: #6f5536;
}

.hell-col-name {
    white-space: nowrap !important;
}

.hell-client-phone {
    color: #c4a06a;
    font-size: 12px;
    white-space: nowrap;
}

.hell-client-email {
    color: #6b6b6b;
    font-size: 12px;
    white-space: nowrap;
}

.hell-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 48px;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #e8f3ea;
    color: var(--status-ok);
}

.hell-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3d9a4a;
}

.hell-badge-muted {
    background: #eef4ee;
    color: #6b8f6e;
}

.hell-badge-muted .hell-badge-dot {
    background: #9bb89d;
}

.hell-badge-gold {
    background: #f4eadb;
    color: #8a6d49;
}

.hell-badge-gold .hell-badge-dot {
    background: var(--gold-beige);
}

.hell-icon-ok { color: var(--status-ok) !important; }
.hell-icon-warn { color: var(--status-warn) !important; }
.hell-icon-alert { color: var(--status-alert) !important; }
.hell-icon-muted { color: #9a9a9a !important; }

.hell-listing .dataTables_wrapper .dataTables_length select,
.hell-listing .dataTables_wrapper .dataTables_filter input {
    border: 1px solid #e4e0d8;
    border-radius: 8px;
    height: 34px;
    padding: 4px 10px;
    color: #333;
    background: #fff;
}

.hell-listing .dataTables_wrapper .dataTables_length select:focus,
.hell-listing .dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--gold-beige);
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-listing .dataTables_wrapper .dataTables_info,
.hell-listing .dataTables_wrapper .dataTables_length {
    color: var(--text-light);
    padding: 12px 18px 0;
    float: none !important;
}

.hell-listing .hell-table-footer .dataTables_info {
    padding: 12px 18px 8px;
}

.hell-listing .dataTables_wrapper .dataTables_paginate {
    padding: 12px 18px 8px;
    float: none !important;
}

.hell-listing .dataTables_wrapper .dataTables_paginate .paginate_button {
    border: none !important;
    background: transparent !important;
    color: #888 !important;
    border-radius: 6px !important;
}

.hell-listing .dataTables_wrapper .dataTables_paginate .paginate_button.current,
.hell-listing .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: #e8d3b4 !important;
    color: #3a2f24 !important;
}

.hell-listing .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(209, 159, 104, 0.15) !important;
    color: #6f5536 !important;
}

.hell-listing input[type="checkbox"],
.hell-listing input[type="radio"],
.hell-modal input[type="checkbox"],
.hell-modal input[type="radio"] {
    accent-color: var(--gold-beige);
}

.hell-listing .dynamic-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    background: #faf7f2;
}

.hell-listing .dynamic-table th,
.hell-listing .dynamic-table td {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid #eeeae4;
    background: transparent;
    text-align: left;
}

.hell-listing .dynamic-table th {
    color: #7a7a7a;
    font-size: 12px;
    font-weight: 700;
}

.hell-contact-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 0 0;
}

.hell-contact-footer span {
    margin-right: auto;
    font-size: 12px;
    color: #888;
}

.hell-contact-log {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hell-contact-log-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid #eeeae4;
}

.hell-contact-log-item:first-child {
    padding-top: 0;
}

.hell-contact-log-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hell-contact-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 20px;
}

#hellContatoFormCard textarea.form-control {
    height: auto;
    min-height: 96px;
    resize: vertical;
}

.hell-modal .modal-content {
    background: #fff;
    border: 1px solid #eadfce;
    border-radius: 16px;
    color: var(--text-primary);
}

.hell-modal .modal-header {
    background: #fff;
    color: #3a2f24;
    border-bottom: 1px solid #eeeae4;
}

.hell-modal .modal-header h5,
.hell-modal .modal-header .modal-title {
    color: #3a2f24;
    font-weight: 700;
    margin: 0;
}

.hell-modal .modal-header .close {
    color: #888;
    opacity: 1;
    text-shadow: none;
}

.hell-modal .modal-footer {
    border-top: 1px solid #eeeae4;
    background: #fff;
}

.hell-modal .form-control:focus {
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.25);
}

@media (max-width: 1200px) {
    .hell-filter-grid,
    .hell-filter-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ===== DASHBOARD TRATAMENTOS DO CLIENTE ===== */
.hell-dash-profile {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.hell-dash-back {
    display: block;
    color: #8a6d49;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
    margin-bottom: 12px;
}

.hell-dash-back:hover {
    color: #6f5536;
    text-decoration: none;
}

.hell-dash-profile-info h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #2b2c2d;
    letter-spacing: -0.4px;
}

.hell-dash-profile-info p {
    margin: 4px 0 0;
    color: #888;
    font-size: 13px;
    font-weight: 400;
}

.hell-dash-card {
    overflow: visible !important;
}

.hell-dash-toolbar {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 12px 8px;
    flex-wrap: wrap;
}

.hell-dash-toolbar .form-control {
    height: 38px;
    border-radius: 8px;
    border-color: #e4e0d8;
    font-size: 14px;
    max-width: 320px;
}

.hell-dash-toolbar select.form-control {
    max-width: 220px;
}

.hell-dash-toolbar .form-control:focus {
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-treat-name {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.hell-treat-code {
    margin-top: 4px;
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

.hell-pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.hell-pill-ok {
    background: #e8f3ea;
    color: var(--status-ok);
}

.hell-pill-done {
    background: #f4eadb;
    color: #8a6d49;
}

.hell-pill-muted {
    background: #f1f1f1;
    color: #888;
}

.hell-treat-actions {
    text-align: right;
    width: 56px;
}

.hell-col-actions {
    width: 56px;
    overflow: visible !important;
}

.hell-col-actions .dropdown {
    display: inline-block;
}

.hell-menu-btn {
    background: transparent !important;
    border: none !important;
    color: #8a6d49 !important;
    width: 36px;
    height: 36px;
    padding: 0 !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    cursor: pointer;
}

.hell-menu-btn:hover,
.hell-menu-btn:focus {
    background: #F0F0F0 !important;
    color: #6f5536 !important;
    border-radius: 50% !important;
}

.hell-dash-menu {
    border: 1px solid #eadfce;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    padding: 6px 0;
    min-width: 180px;
}

.hell-dash-menu .dropdown-item {
    font-size: 13px;
    color: #333 !important;
    padding: 8px 16px;
    text-transform: none;
}

.hell-dash-menu .dropdown-item:hover {
    background: #fbf8f3;
    color: #6f5536 !important;
}

.hell-dash-menu .dropdown-item.disabled {
    color: #aaa !important;
}

.hell-dash-menu .hell-menu-danger {
    color: #c62828 !important;
}

.hell-dash-menu .hell-menu-danger:hover {
    background: #fdecea;
    color: #c62828 !important;
}

.hell-dash-empty {
    padding: 48px 24px;
    text-align: center;
}

.hell-dash-empty p {
    color: #666;
    font-size: 14px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hell-dash-toolbar .form-control,
    .hell-dash-toolbar select.form-control {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

.hell-session-date {
    font-size: 14px;
    font-weight: 700;
    color: #2b2c2d;
    white-space: nowrap;
}

.hell-laser-name {
    color: #2b2c2d;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
}

.hell-laser-param {
    margin-top: 3px;
    color: #888;
    font-size: 12px;
    font-weight: 400;
}

.hell-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hell-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 8px;
    background: #F4F5F7;
    color: #555;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.hell-session-obs {
    color: #555;
    font-size: 12px;
    max-width: 280px;
    line-height: 1.4;
}

.hell-session-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.hell-session-actions {
    text-align: right;
    white-space: nowrap;
    width: 88px;
}

.hell-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 2px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #8a6d49;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    box-shadow: none !important;
    vertical-align: middle;
}

.hell-icon-btn .fa,
.hell-icon-btn .fas,
.hell-icon-btn .svg-inline--fa {
    color: inherit !important;
    font-size: 13px;
}

.hell-listing table tbody td .hell-icon-btn,
.hell-listing table tbody td .hell-icon-btn .fa,
.hell-listing table tbody td .hell-icon-btn .fas,
.hell-listing table tbody td .hell-icon-btn .svg-inline--fa {
    color: #8a6d49 !important;
}

.hell-icon-btn:hover,
.hell-icon-btn:focus {
    background: #F0F0F0;
    color: #6f5536;
    text-decoration: none;
}

.hell-listing table tbody td .hell-icon-btn:hover,
.hell-listing table tbody td .hell-icon-btn:hover .fa,
.hell-listing table tbody td .hell-icon-btn:hover .fas,
.hell-listing table tbody td .hell-icon-btn:hover .svg-inline--fa {
    color: #6f5536 !important;
}

.hell-icon-btn.hell-icon-danger:hover,
.hell-icon-btn.hell-icon-danger:focus {
    background: #fdecea;
    color: #c62828;
}

.hell-listing table tbody td .hell-icon-btn.hell-icon-danger:hover,
.hell-listing table tbody td .hell-icon-btn.hell-icon-danger:hover .fa,
.hell-listing table tbody td .hell-icon-btn.hell-icon-danger:hover .fas,
.hell-listing table tbody td .hell-icon-btn.hell-icon-danger:hover .svg-inline--fa {
    color: #c62828 !important;
}

/* ===== SIDEBAR MINIMALISTA ===== */
.main-sidebar {
    background: #1e2126 !important;
    box-shadow: none !important;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.main-sidebar .hell-brand-link,
.main-sidebar .brand-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 16px 18px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.main-sidebar .brand-link .brand-image {
    float: none !important;
    margin: 0 !important;
    max-height: 36px;
    width: auto;
    opacity: 1 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.main-sidebar .brand-link .brand-text {
    margin: 0 !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.main-sidebar .user-panel {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 4px 8px 16px !important;
    margin: 12px 10px 8px !important;
}

.main-sidebar .user-panel .info {
    padding: 0 !important;
    left: 0 !important;
}

.hell-sidebar-hello {
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    color: #b8bcc3;
    line-height: 1.4;
}

.main-sidebar .nav-sidebar .nav-item > .nav-link {
    margin: 2px 8px 2px 0;
    padding: 10px 14px;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    color: #c5c8ce !important;
    background: transparent !important;
    transition: background 0.2s ease, color 0.2s ease;
}

.main-sidebar .nav-sidebar .nav-link p {
    display: inline-block;
    margin: 0;
    transition: transform 0.2s ease;
}

.main-sidebar .nav-sidebar .nav-link .nav-icon,
.main-sidebar .nav-sidebar .nav-link svg.nav-icon,
.main-sidebar .nav-sidebar .nav-link .svg-inline--fa {
    color: #9aa0a8 !important;
    width: 1.15rem;
    margin-right: 10px;
    transition: color 0.2s ease;
}

.main-sidebar .nav-sidebar .nav-link > p > .right,
.main-sidebar .nav-sidebar .nav-link p .fa-angle-left,
.main-sidebar .nav-sidebar .nav-link p .fa-angle-right {
    display: none !important;
}

.main-sidebar .nav-sidebar > .nav-item > .nav-link:not(.active):hover,
.main-sidebar .nav-sidebar .nav-treeview > .nav-item > .nav-link:not(.active):hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #fff !important;
}

.main-sidebar .nav-sidebar > .nav-item > .nav-link:not(.active):hover p,
.main-sidebar .nav-sidebar .nav-treeview > .nav-item > .nav-link:not(.active):hover p {
    transform: translateX(4px);
}

.main-sidebar .nav-sidebar > .nav-item > .nav-link:not(.active):hover .nav-icon,
.main-sidebar .nav-sidebar .nav-treeview > .nav-item > .nav-link:not(.active):hover .nav-icon,
.main-sidebar .nav-sidebar .nav-link:not(.active):hover .svg-inline--fa {
    color: #d19f68 !important;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active,
.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active:hover,
.main-sidebar .nav-sidebar .nav-treeview > .nav-item > .nav-link.active,
.main-sidebar .nav-sidebar .nav-link.active {
    background: #2C3036 !important;
    border-left: 3px solid #8C734B !important;
    border-radius: 0 8px 8px 0 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.main-sidebar .nav-sidebar .nav-link.active .nav-icon,
.main-sidebar .nav-sidebar .nav-link.active svg,
.main-sidebar .nav-sidebar .nav-link.active .svg-inline--fa {
    color: #d19f68 !important;
}

.main-sidebar .nav-sidebar .nav-treeview {
    padding-left: 8px;
}

.main-sidebar .nav-sidebar .nav-treeview .nav-icon {
    font-size: 0.7rem;
}

/* ===== FORMULÁRIO DE TRATAMENTO ===== */
.hell-form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    padding: 24px;
    margin-bottom: 16px;
}

.hell-form-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hell-form-card-head .hell-form-section-title {
    margin: 0;
}

.hell-form-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.hell-form-section-title {
    margin: 0 0 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #8a6d49;
}

.hell-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 20px;
}

.hell-form-span-2 {
    grid-column: span 2;
}

.hell-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
}

.hell-req {
    color: #8a6d49;
}

.hell-form-field .form-control,
.hell-form select.form-control {
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e4e0d8;
    font-size: 14px;
    color: #333;
    background: #fff;
}

.hell-form-field .form-control:focus,
.hell-form select.form-control:focus {
    border-color: var(--gold-beige);
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-form-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 12px;
}

.hell-form-extra {
    margin-top: 8px;
    width: 100%;
}

.hell-form-field > .hell-form-nested {
    display: block;
    margin-top: 8px;
    margin-left: 12px;
    width: calc(100% - 12px);
    height: 40px;
    border: 1px solid #eadfce;
    background: #fbf8f3;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
}

.hell-form-field > .hell-form-nested:focus {
    border-color: var(--gold-beige);
    background: #fff;
    box-shadow: 0 0 0 0.15rem rgba(209, 159, 104, 0.2);
}

.hell-form-error {
    display: none;
    color: #c62828;
    font-size: 12px;
    margin-top: 6px;
}

.hell-check-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hell-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #f7f4f0;
    border-radius: 10px;
    min-width: 160px;
    cursor: pointer;
    position: relative;
}

.hell-check-block {
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    flex: 1 1 220px;
}

.hell-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hell-autoriza-row {
    gap: 18px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.hell-check label {
    margin: 0;
    padding-left: 0 !important;
    text-indent: 0 !important;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    text-transform: none;
    line-height: 1.35;
    overflow: visible;
    position: static !important;
    flex: 1 1 auto;
}

.hell-form input[type="checkbox"],
.hell-form input[type="radio"],
.hell-check .form-check-input,
.hell-check-row .form-check-input {
    accent-color: var(--gold-beige);
    position: static !important;
    float: none !important;
    width: 16px !important;
    height: 16px !important;
    margin: 0 !important;
    margin-left: 0 !important;
    flex-shrink: 0;
}

.hell-form-subtitle {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: #2b2c2d;
    text-transform: none;
    letter-spacing: 0;
}

.hell-form-legend {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 600;
    color: #888;
}

.hell-form-subcard {
    margin-top: 16px;
    padding: 16px;
    background: #fbf8f3;
    border-radius: 12px;
}

.hell-form-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hell-form-actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px 0 24px;
}

.hell-form-field .errorMsg {
    display: none;
    color: #c62828;
    font-size: 12px;
    margin-top: 6px;
}

.hell-form-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    gap: 20px;
}

.hell-form-textarea {
    min-height: 110px;
    height: auto !important;
    resize: vertical;
    padding-top: 10px;
}

.hell-money {
    display: flex;
    align-items: stretch;
}

.hell-money-prefix {
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    background: #f7f4f0;
    border: 1px solid #e4e0d8;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #8a6d49;
    font-size: 13px;
    font-weight: 700;
}

.hell-money .form-control {
    border-radius: 0 8px 8px 0 !important;
}

.hell-btn-solid {
    background: #8C734B !important;
    color: #fff !important;
    border: 1px solid #8C734B !important;
    border-radius: 8px;
    font-weight: 600 !important;
    letter-spacing: 0.6px;
    font-size: 12px !important;
    line-height: 1.2 !important;
    padding: 8px 18px !important;
}

.hell-btn-solid:hover {
    background: #6f5536 !important;
    border-color: #6f5536 !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .hell-form-grid,
    .hell-form-grid-3,
    .hell-form-subgrid,
    .hell-form-split {
        grid-template-columns: 1fr;
    }

    .hell-form-span-2 {
        grid-column: span 1;
    }
}

/* ===== FICHA CLÍNICA E DRAWER ===== */
.hell-ficha-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 16px 20px;
}

.hell-ficha-span-2 {
    grid-column: span 2;
}

.hell-ficha-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hell-ficha-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #8a6d49;
}

.hell-ficha-value {
    font-size: 14px;
    font-weight: 500;
    color: #2b2c2d;
    line-height: 1.4;
}

.hell-ficha-empty {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.hell-ficha-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hell-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(34, 35, 36, 0.35);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.hell-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.hell-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(560px, 100%);
    height: 100%;
    background: #F7F4F0;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.hell-drawer-backdrop.is-open .hell-drawer {
    transform: translateX(0);
}

.hell-drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 20px 20px 16px;
    background: #fff;
    border-bottom: 1px solid #eeeae4;
}

.hell-drawer-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2b2c2d;
}

.hell-drawer-header p {
    margin: 4px 0 0;
    font-size: 12px;
    color: #888;
}

.hell-drawer-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hell-drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #888;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    text-transform: none;
}

.hell-drawer-close:hover {
    background: #F0F0F0;
    color: #333;
}

.hell-drawer-body {
    flex: 1;
    overflow: auto;
    padding: 16px;
}

.hell-drawer-body .hell-form-card {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

body.hell-drawer-lock {
    overflow: hidden;
}

.hell-contato-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hell-contato-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 0;
    border-bottom: 1px solid #efe8dc;
}

.hell-contato-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hell-clinica-link {
    color: #8C734B;
    font-weight: 600;
    text-decoration: none;
}

.hell-clinica-link:hover {
    text-decoration: underline;
}

.hell-clinica-count {
    color: #8C734B;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hell-ficha-grid {
        grid-template-columns: 1fr;
    }

    .hell-ficha-span-2 {
        grid-column: 1 / -1;
    }

    .hell-drawer-header {
        flex-wrap: wrap;
    }
}

/* ===== TOAST DE SUCESSO ===== */
.hell-toast-host {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10800;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    pointer-events: none;
    max-width: min(420px, calc(100vw - 32px));
}

.hell-toast {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    padding: 14px 16px;
    background: #1f1e1d;
    color: #f7f4f0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.hell-toast.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.hell-toast.is-hiding {
    opacity: 0;
    transform: translateX(18px);
}

.hell-toast-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #2e7d32;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.hell-toast--error .hell-toast-icon {
    background: #c62828;
}

.hell-toast--warning .hell-toast-icon {
    background: #8C734B;
}

.hell-toast-body {
    flex: 1 1 auto;
    min-width: 0;
}

.hell-toast-title {
    margin: 0 0 2px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #fff;
}

.hell-toast-message {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(247, 244, 240, 0.86);
}

.hell-toast-close {
    border: none;
    background: transparent;
    color: rgba(247, 244, 240, 0.5);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 2px;
    flex-shrink: 0;
}

.hell-toast-close:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .hell-toast-host {
        left: 16px;
        right: 16px;
        top: 16px;
        max-width: none;
        align-items: stretch;
    }

    .hell-toast {
        max-width: none;
        transform: translateY(-12px);
    }

    .hell-toast.is-visible {
        transform: translateY(0);
    }

    .hell-toast.is-hiding {
        transform: translateY(-12px);
    }
}

