/**
 * Garbi Frontend Styles
 * Solo estilos de layout/estructura - Todo lo visual hereda del tema
 */

/* Reset - Quitar shadows */
.garbi-panel,
.garbi-panel *,
.garbi-auth-container,
.garbi-auth-container *,
.garbi-solicitud-trabajador,
.garbi-solicitud-trabajador * {
    box-shadow: none !important;
}

/* ==========================================================================
   BUTTONS - Solo layout
   ========================================================================== */

.garbi-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none !important;
    cursor: pointer;
    line-height: 1;
    fill: currentColor;
    transition: all 0.3s ease;
}

.garbi-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.garbi-btn-block {
    width: 100%;
    justify-content: center;
}

/* ==========================================================================
   FORM ELEMENTS - Solo layout
   ========================================================================== */

.garbi-form-group {
    margin-bottom: 20px;
}

.garbi-form-group input,
.garbi-form-group select,
.garbi-form-group textarea {
    width: 100%;
}

.garbi-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

.garbi-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.garbi-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 600px) {
    .garbi-form-row {
        grid-template-columns: 1fr;
    }
}

/* Checkbox */
.garbi-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.garbi-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
}

/* Radio buttons */
.garbi-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.garbi-radio input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Input with unit */
.garbi-input-with-unit {
    display: flex;
    align-items: stretch;
}

/* Badges - Solo layout */
.garbi-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
}

/* Status badges - Solo layout */
.garbi-status {
    display: inline-block;
    padding: 4px 10px;
}

/* Priority badges - Solo layout */
.garbi-priority {
    display: inline-block;
    padding: 4px 10px;
}

/* Notices - Solo layout */
.garbi-notice {
    padding: 16px 20px;
    margin-bottom: 20px;
}

.garbi-notice p {
    margin: 0 0 12px;
}

/* Modal - Layout */
.garbi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
}

.garbi-modal[aria-hidden="false"],
.garbi-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
}

.garbi-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.garbi-modal-container,
.garbi-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    margin: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.garbi-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.garbi-modal-header h2,
.garbi-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.garbi-modal-close {
    background: #f3f4f6;
    border: none;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    border-radius: 6px;
    font-size: 20px;
    color: #6b7280;
    transition: all 0.2s;
}

.garbi-modal-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.garbi-modal-body {
    padding: 20px;
}

.garbi-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
    border-radius: 0 0 12px 12px;
}

/* ==========================================================================
   WORKER DETAIL MODAL - Estilo calculadora
   ========================================================================== */

/* Detail sections */
.garbi-detail-section {
    margin-bottom: 24px;
}

.garbi-detail-section:last-child {
    margin-bottom: 0;
}

.garbi-detail-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Detail info grid */
.garbi-detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.garbi-detail-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.garbi-detail-item.full-width {
    grid-column: 1 / -1;
}

.garbi-detail-item label {
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.garbi-detail-item span {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
}

/* Estancia cards - estilo modal calculadora */
.garbi-estancia-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.garbi-estancia-card:last-child {
    margin-bottom: 0;
}

.garbi-estancia-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.garbi-estancia-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.garbi-estancia-icon .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
    color: #6b7280;
}

.garbi-estancia-info {
    flex: 1;
    min-width: 0;
}

.garbi-estancia-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #1f2937;
}

.garbi-estancia-info span {
    font-size: 12px;
    color: #6b7280;
}

/* Items container */
.garbi-estancia-items {
    padding: 12px 16px;
}

/* Items group (Servicios / Objetos) */
.garbi-items-group {
    margin-bottom: 16px;
}

.garbi-items-group:last-child {
    margin-bottom: 0;
}

.garbi-items-group-title {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.garbi-items-group-title .dashicons {
    width: 14px;
    height: 14px;
    font-size: 14px;
}

/* Item list - estilo calculadora modal */
.garbi-item-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Individual item card */
.garbi-item-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e7eb;
    border-bottom: none;
    background: #fff;
    transition: all 0.2s ease;
}

.garbi-item-card:first-child {
    border-radius: 8px 8px 0 0;
}

.garbi-item-card:last-child {
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0 0 8px 8px;
}

.garbi-item-card:only-child {
    border-radius: 8px;
    border-bottom: 1px solid #e5e7eb;
}

/* Item card header */
.garbi-item-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    min-height: 48px;
    cursor: pointer;
}

.garbi-item-card.no-desc .garbi-item-card-header {
    cursor: default;
}

.garbi-item-card-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

/* Checkbox estilo calculadora */
.garbi-item-check {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #1f6fbf;
}

.garbi-item-check:checked {
    background: #1f6fbf;
    border-color: #1f6fbf;
}

.garbi-item-card-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    line-height: 1.3;
}

.garbi-item-card-qty {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Toggle arrow */
.garbi-item-card-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.garbi-item-card-toggle .dashicons {
    width: 16px;
    height: 16px;
    font-size: 16px;
    color: #9ca3af;
}

.garbi-item-card.open .garbi-item-card-toggle {
    transform: rotate(180deg);
}

/* Description */
.garbi-item-card-desc {
    display: none;
    padding: 0 14px 12px 46px;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
}

.garbi-item-card.open .garbi-item-card-desc {
    display: block;
}

/* Item checked state */
.garbi-item-card.checked {
    background: #f0f9ff;
    border-color: #1f6fbf;
}

.garbi-item-card.checked + .garbi-item-card {
    border-top-color: #1f6fbf;
}

.garbi-item-card.checked .garbi-item-card-name {
    color: #1f6fbf;
}

/* No items message */
.garbi-no-items {
    text-align: center;
    padding: 24px 16px;
    color: #9ca3af;
    font-size: 14px;
}

/* Progress bar in footer */
#garbi-modal-footer {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.garbi-progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

#garbi-progress-fill {
    height: 100%;
    background: #1f6fbf;
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 0;
}

#garbi-progress-text {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

#garbi-complete-all-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #059669;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

#garbi-complete-all-btn:hover:not(:disabled) {
    background: #047857;
}

#garbi-complete-all-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#garbi-complete-all-btn .dashicons {
    width: 18px;
    height: 18px;
    font-size: 18px;
}

#garbi-complete-all-btn .dashicons.spin {
    animation: garbi-spin 1s linear infinite;
}

/* Empty state - Layout */
.garbi-empty-state {
    text-align: center;
    padding: 40px 20px;
}

.garbi-empty-state .dashicons {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

/* Loading - Layout */
.garbi-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.garbi-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid;
    border-radius: 50%;
    animation: garbi-spin 0.8s linear infinite;
}

@keyframes garbi-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Cards - Layout */
.garbi-card {
    overflow: hidden;
}

.garbi-card-header {
    padding: 16px 20px;
}

.garbi-card-body {
    padding: 20px;
}

.garbi-card-footer {
    padding: 16px 20px;
}

/* Paid badge - Layout */
.garbi-paid-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
}

.garbi-paid-badge .dashicons {
    width: 16px;
    height: 16px;
}

/* Loading spinner for buttons */
.garbi-btn.garbi-loading {
    pointer-events: none;
    opacity: 0.7;
}

.garbi-btn .dashicons.spin {
    animation: garbi-spin 1s linear infinite;
}

/* Payment Modal - Layout */
.garbi-payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100000;
}

.garbi-payment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.garbi-payment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.garbi-payment-modal-container {
    position: relative;
    width: 90%;
    max-width: 420px;
    max-height: 90vh;
    overflow: hidden;
    animation: garbi-modal-appear 0.3s ease;
}

@keyframes garbi-modal-appear {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.garbi-payment-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.garbi-payment-modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.garbi-payment-modal-header .dashicons {
    width: 24px;
    height: 24px;
}

.garbi-payment-modal-close {
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.garbi-payment-modal-body {
    padding: 24px;
}

.garbi-payment-summary {
    text-align: center;
    padding: 20px 0;
}

.garbi-payment-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.garbi-payment-icon .dashicons {
    width: 32px;
    height: 32px;
}

.garbi-payment-label {
    margin: 0 0 8px;
}

.garbi-payment-amount {
    margin: 0 0 16px;
}

.garbi-payment-secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    margin: 0;
}

.garbi-payment-secure .dashicons {
    width: 16px;
    height: 16px;
}

.garbi-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.garbi-payment-method {
    display: block;
    cursor: pointer;
}

.garbi-payment-method input[type="radio"] {
    display: none;
}

.garbi-payment-method-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.garbi-payment-method input:checked + .garbi-payment-method-content {
    border-width: 2px;
}

.garbi-payment-method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.garbi-payment-method-info {
    flex: 1;
}

.garbi-payment-method-info strong {
    display: block;
}

.garbi-payment-method-info span {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.garbi-payment-method-logos {
    display: flex;
    gap: 8px;
    align-items: center;
}

.garbi-payment-method-logos img {
    height: 20px;
    width: auto;
}

.garbi-payment-info-box {
    text-align: center;
    padding: 16px;
    margin-bottom: 16px;
}

.garbi-payment-loading {
    text-align: center;
    padding: 40px 20px;
}

.garbi-payment-loading p {
    margin: 0;
}

.garbi-payment-error {
    text-align: center;
    padding: 40px 20px;
}

.garbi-payment-error .dashicons {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.garbi-payment-error-message {
    margin: 0 0 20px;
}

body.garbi-modal-open {
    overflow: hidden;
}

/* Dropdown divider */
.garbi-dropdown-divider {
    margin: 6px 0;
}

/* Responsive payment modal */
@media (max-width: 480px) {
    .garbi-payment-modal-container {
        width: 95%;
        margin: 10px;
    }

    .garbi-payment-modal-body {
        padding: 16px;
    }
}

/* ==========================================================================
   SOLICITUD TRABAJADOR FORM - Layout
   ========================================================================== */

.garbi-solicitud-trabajador {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
}

.garbi-solicitud-card {
    padding: 40px;
}

.garbi-solicitud-logo {
    text-align: center;
    margin-bottom: 24px;
}

.garbi-solicitud-logo img {
    max-height: 60px;
    width: auto;
}

.garbi-solicitud-header {
    text-align: center;
    margin-bottom: 32px;
}

.garbi-form-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.garbi-form-section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Checkbox group */
.garbi-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

/* File upload */
.garbi-file-upload {
    position: relative;
}

.garbi-file-input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.garbi-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 2px dashed;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
}

.garbi-file-label:hover {
    border-style: solid;
}

.garbi-file-icon {
    margin-bottom: 8px;
}

.garbi-file-icon.dashicons {
    width: 32px;
    height: 32px;
    font-size: 32px;
}

.garbi-file-text {
    display: block;
    margin-bottom: 4px;
}

.garbi-file-hint {
    display: block;
    font-size: 12px;
    opacity: 0.7;
}

.garbi-file-name {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

/* Ubicacion controls */
.garbi-ubicacion-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

/* Zone map */
.garbi-zona-map {
    height: 300px !important;
    min-height: 300px !important;
    width: 100% !important;
    overflow: hidden;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    background: #f0f0f0;
}

/* Leaflet map fixes - Asegurar que Leaflet tenga dimensiones */
.garbi-zona-map.leaflet-container,
.garbi-zona-map .leaflet-container {
    height: 100% !important;
    width: 100% !important;
    z-index: 1;
}

/* Leaflet tiles visibility */
.garbi-zona-map .leaflet-tile-pane,
.garbi-zona-map .leaflet-tile {
    visibility: visible !important;
}

.garbi-map-hint {
    font-size: 12px;
    margin: 0;
    opacity: 0.7;
}

/* Address map in modal */
.garbi-address-map-container {
    position: relative;
    height: 200px;
    min-height: 200px;
    overflow: hidden;
    margin-top: 16px;
}

#garbi-address-map {
    width: 100%;
    height: 100%;
}

.garbi-address-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.garbi-address-map-overlay.hidden {
    display: none;
}

.garbi-address-map-overlay .dashicons {
    font-size: 32px;
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
}

.garbi-address-map-overlay p {
    margin: 0;
    font-size: 13px;
    opacity: 0.7;
}

/* Get location button */
.garbi-get-location-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    font-size: 13px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.2s ease;
}

.garbi-get-location-btn:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.garbi-get-location-btn:disabled {
    opacity: 0.7;
    cursor: wait;
}

.garbi-get-location-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.garbi-get-location-btn .dashicons.spin {
    animation: garbi-spin 1s linear infinite;
}

@keyframes garbi-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Form actions */
.garbi-form-actions {
    margin-top: 24px;
}

/* Success state */
.garbi-solicitud-success {
    text-align: center;
    padding: 40px 20px;
}

.garbi-success-icon .dashicons {
    width: 64px;
    height: 64px;
    font-size: 64px;
    margin-bottom: 16px;
}

.garbi-solicitud-success h3 {
    margin: 0 0 16px;
}

.garbi-solicitud-success p {
    margin: 0 0 24px;
}

@media (max-width: 600px) {
    .garbi-solicitud-card {
        padding: 24px 16px;
    }

    .garbi-checkbox-group {
        flex-direction: column;
        gap: 10px;
    }

    .garbi-ubicacion-controls {
        flex-direction: column;
    }

    .garbi-ubicacion-controls .garbi-btn {
        width: 100%;
        justify-content: center;
    }

    .garbi-zona-map {
        height: 250px;
    }
}

/* ==========================================================================
   AUTH FORM - Layout
   ========================================================================== */

/* Auth page wrapper */
.garbi-auth-wrapper {
    padding: 40px 20px;
}

/* Hide decoration element */
.garbi-auth-wrapper .garbi-auth-decoration {
    display: none;
}

.garbi-auth-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
}

.garbi-auth-box {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.garbi-auth-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    padding: 4px;
}

.garbi-auth-toggle-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.garbi-auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.garbi-auth-form .garbi-form-group {
    margin-bottom: 16px;
}

.garbi-form-row-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.garbi-link {
    text-decoration: none;
}

.garbi-link:hover {
    text-decoration: underline;
}

/* Auth footer (back to login link) */
.garbi-auth-footer {
    margin-top: 24px;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.garbi-auth-footer .garbi-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
}

.garbi-auth-footer .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.garbi-auth-header h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
}

.garbi-auth-header p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .garbi-auth-wrapper {
        padding: 20px 16px;
    }

    .garbi-auth-container {
        padding: 0;
    }

    .garbi-auth-box {
        padding: 24px 16px;
    }

    .garbi-form-row-inline {
        flex-direction: column;
        align-items: flex-start;
    }
}
