:root {
    --primary: #f472b6; /* Pink 400 */
    --primary-hover: #db2777; /* Pink 600 */
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fce7f3; /* Pink 50 */
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.background-blobs {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: #fbcfe8; }
.blob-2 { bottom: -10%; right: -10%; width: 600px; height: 600px; background: #e9d5ff; animation-delay: -3s; }
.blob-3 { top: 40%; left: 40%; width: 400px; height: 400px; background: #fecdd3; animation-delay: -5s; }

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 50px) scale(1.1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #db2777, #9333ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-actions {
    display: flex;
    gap: 1rem;
}

.glass-input {
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(244, 114, 182, 0.3);
}

button {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, var(--primary), #d946ef);
    color: white;
    box-shadow: 0 4px 15px rgba(219, 39, 119, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.5);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Stats Dashboard (Carrossel) */
.stats-panel {
    padding: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.stats-panel::-webkit-scrollbar {
    height: 6px;
}
.stats-panel::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 0 160px;
    scroll-snap-align: center;
    background: rgba(255,255,255,0.4);
    border-radius: 12px;
    padding: 1rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.6);
    text-align: center;
    transition: transform 0.2s;
}

.stat.clickable-stat {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
}

.stat.clickable-stat:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-hover);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

/* Cards Grid */
.grid-container {
    padding: 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.esmalte-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.esmalte-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 22px 45px rgba(236, 72, 153, 0.15);
}

.card-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(251, 207, 232, 0.5), rgba(233, 213, 255, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--primary-hover);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.tag {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--text-main);
}

.tag.status-nova {
    border-color: #7c3aed;
    color: #7c3aed;
}

.card-last-used {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.card-actions {
    display: flex;
    gap: 0.5rem;
}

.card-actions .full-width {
    flex: 1;
}

.card-btn {
    padding: 0.6rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255,255,255,0.6);
    color: var(--text-main);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.card-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.card-btn.action-use {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(217, 70, 239, 0.2));
    color: var(--primary-hover);
    border-color: transparent;
}

.card-btn.action-use:hover {
    background: linear-gradient(135deg, var(--primary), #d946ef);
    color: white;
}

/* List View Styles */
.cards-grid.list-view {
    grid-template-columns: 1fr;
}
.cards-grid.list-view .esmalte-card {
    flex-direction: row;
    min-height: 140px;
    height: auto;
}
.cards-grid.list-view .card-photo-wrapper {
    width: 120px;
    flex-shrink: 0;
}
.cards-grid.list-view .card-photo {
    height: 100%;
    border-bottom: none;
    border-right: 1px solid rgba(0,0,0,0.05);
    font-size: 2.5rem;
}
.cards-grid.list-view .card-content {
    padding: 0.75rem 0.75rem 0.75rem 1rem;
    justify-content: center;
    overflow: hidden;
}
.cards-grid.list-view .card-title {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    padding-bottom: 2px;
}
.cards-grid.list-view .card-tags {
    margin-bottom: 0.4rem;
}
.cards-grid.list-view .tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
}
.cards-grid.list-view .card-last-used {
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
}
.cards-grid.list-view .card-actions .card-btn {
    padding: 0.4rem;
    font-size: 0.8rem;
}


/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay:not(.hidden) .modal-content {
    transform: translateY(0);
}

.form-group {
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    font-size: 0.9rem;
}

.section-title {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-hover);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.hidden {
    display: none !important;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-size: 1.2rem;
}

/* Color Swatch */
.color-swatch {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    margin-right: 8px;
    vertical-align: middle;
    border: 1px solid rgba(0,0,0,0.15);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
}

/* Responsividade Melhorada */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .search-group {
        width: 100%;
        max-width: none;
    }
    
    #addBtn {
        display: none !important;
    }
    
    .fab-mobile {
        display: flex !important;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        box-shadow: 0 6px 20px rgba(236, 72, 153, 0.5);
        font-size: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .fullscreen-modal-mobile {
        max-width: 100% !important;
        height: 100vh !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        border: none !important;
        transform: translateY(0) !important;
    }
    
    /* Improve stats sizing on small screens */
    .stat {
        flex: 0 0 130px;
        padding: 0.75rem 0.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        white-space: nowrap;
    }
}

/* Telas Extras */
.login-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 1rem;
}
.login-panel {
    padding: 3rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.login-input {
    width: 100%;
    margin: 1.5rem 0;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.error-text {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Imagens / Fotos Modal */
.photo-preview-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}
#photoPreview {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid var(--primary);
}
.camera-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.upload-btn {
    text-align: center;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    display: inline-block;
    margin: 0;
}
.crop-container {
    width: 100%;
    max-height: 50vh;
    background-color: #fff;
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 8px;
}

/* Search Input com Botão */
.search-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex: 1;
}
.icon-btn {
    padding: 0.75rem 1rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dupla Foto no Cadastro */
.dual-photo-container {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.photo-box {
    flex: 1;
    min-width: 120px;
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.photo-label {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    text-transform: uppercase;
}
.thumb-preview {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    border: 2px solid var(--primary);
}
.photo-btn-group {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}
.action-btn-sm {
    background: rgba(255,255,255,0.8);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    padding: 0.3rem 0.5rem;
    font-size: 0.75rem;
    cursor: pointer;
}
.action-btn-sm:hover {
    background: var(--primary);
    color: white;
}

/* Ficha Técnica (Novo Modal de Detalhes) */
.details-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    padding: 1.5rem;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.details-header h2 {
    margin: 0;
    font-size: 1.5rem;
}
.details-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.5rem;
    transition: transform 0.2s;
}
.details-close-btn:hover {
    transform: scale(1.2);
}

.details-grid {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .details-grid {
        flex-direction: row;
        padding: 2rem;
    }
    .details-carousel-wrapper {
        flex: 1;
        max-width: 320px;
    }
    .details-info {
        flex: 2;
    }
}

.details-carousel-wrapper {
    width: 100%;
}

.details-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 1rem;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
}

.details-carousel::-webkit-scrollbar {
    height: 6px;
}
.details-carousel::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 4px;
}

.carousel-slide {
    flex: 0 0 85%;
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .carousel-slide {
        flex: 0 0 100%;
    }
}

.carousel-img {
    height: 180px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.carousel-caption {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.details-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.info-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
}
.info-label {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
    min-width: 140px;
}
.info-value {
    font-weight: 500;
    color: var(--text-main);
    flex: 1;
}

/* Ajuste no card principal */
.card-photo-wrapper {
    position: relative;
    cursor: pointer;
}
.card-photo-wrapper:after {
    content: "🔍 Ver Detalhes";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s;
    font-weight: 500;
}
.card-photo-wrapper:hover:after {
    opacity: 1;
}

/* Botão Favorito */
.favorite-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 10;
    transition: transform 0.2s;
}

.favorite-btn:hover {
    transform: scale(1.15);
}

.fav-active { color: #eab308; text-shadow: 0 0 2px rgba(0,0,0,0.2); }
.fav-inactive { color: #9ca3af; text-shadow: 0 0 2px rgba(0,0,0,0.2); opacity: 0.7; }

/* Botões de Ação no Canto Superior */
.top-corner-actions {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 0.5rem;
    z-index: 50;
}

/* Modern Icon Buttons */
.icon-action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--primary-hover);
    padding: 0;
}
.icon-action-btn:hover {
    background: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 15px rgba(219, 39, 119, 0.15);
    color: var(--primary);
}

.subtle-icon-btn {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    opacity: 0.6;
    transition: all 0.2s;
    cursor: pointer;
    padding: 0.25rem;
    filter: grayscale(100%);
}

.subtle-icon-btn:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Close Top Button */
.close-top-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 100;
}

.close-top-btn:hover {
    color: var(--primary);
}

/* Details Markdown Style */
.details-markdown-style p {
    margin-bottom: 0.8rem;
    color: var(--text-main);
    line-height: 1.4;
    font-size: 0.95rem;
}
.details-markdown-style strong {
    color: var(--primary-hover);
    font-weight: 600;
}

/* Modal Config Categories */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255,255,255,0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.05);
}
.category-item button {
    background: transparent;
    color: #ef4444;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    transition: transform 0.2s;
}
.category-item button:hover {
    transform: scale(1.2);
}

/* =========================================
   UI/UX PREMIUM IMPROVEMENTS
========================================= */

/* 1. Scrollbars Customizadas (Glass/Minimal) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* 2. Customização dos Selects (Remover setinha feia nativa) */
select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23a8a2b5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 35px !important; /* Espaço para a setinha */
    cursor: pointer;
}

/* 3. Correções no Layout do Scanner (Centralização e Botão) */
#reader__dashboard_section_csr {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
#reader__dashboard_section_csr > span {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
}
#reader__dashboard_section_csr select {
    display: block !important;
    margin: 10px auto !important;
    width: 90% !important;
    max-width: 300px;
    padding: 10px !important;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}
#html5-qrcode-button-camera-start,
#html5-qrcode-button-camera-stop {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 15px rgba(220, 102, 219, 0.3) !important;
    transition: transform 0.2s !important;
    margin-top: 5px;
}
#html5-qrcode-button-camera-start:hover,
#html5-qrcode-button-camera-stop:hover {
    transform: translateY(-2px) !important;
}

/* Transformar o Link da Galeria em um Botão Bonito */
#html5-qrcode-anchor-scan-type-change {
    display: inline-block !important;
    text-decoration: none !important;
    background: var(--surface) !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 10px !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    margin-top: 10px !important;
}

/* Ajuste Fino para Telas Pequenas */
@media (max-width: 600px) {
    #reader__dashboard_section_csr select {
        width: 100% !important;
    }
}

.add-esmalte-btn .btn-icon {
    margin-right: 6px;
}

.fab-mobile {
    display: none;
}
