/* Modern Dark Premium CSS for Telegram Mini App */

:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(17, 24, 39, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --primary: #38bdf8;
    --primary-glow: rgba(56, 189, 248, 0.35);
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.2);
    --danger: #f43f5e;
    --danger-glow: rgba(244, 63, 94, 0.2);
    --warning: #fbbf24;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(at 0% 0%, rgba(56, 189, 248, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    padding: 16px;
    -webkit-tap-highlight-color: transparent;
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 40px;
}

/* Header & Typography */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
}

.header-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-export {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-export:hover {
    background: rgba(56, 189, 248, 0.25);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.btn-export:active {
    transform: scale(0.96);
}

h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.glow-text {
    color: #fff;
    text-shadow: 0 0 15px var(--primary-glow);
}

.subtitle {
    font-size: 13px;
    color: var(--text-secondary);
}

h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

/* Glass Cards */
.card {
    border-radius: 18px;
    padding: 22px;
    border: 1px solid var(--border-color);
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation Tabs */
.tab-navigation {
    display: flex;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 6px;
    background: rgba(17, 24, 39, 0.5);
    border-radius: 12px;
    padding: 6px;
    border: 1px solid var(--border-color);
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.tab-navigation::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.tab-btn, .tab-button {
    flex: 1 0 auto; /* Allow grow, don't shrink, auto basis */
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 14px;
    border-radius: 9px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.tab-btn:hover, .tab-button:hover {
    color: var(--text-primary);
}

.tab-btn.active, .tab-button.active {
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary);
    box-shadow: inset 0 0 8px rgba(56, 189, 248, 0.1);
}

/* Form Styles */
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-group.half {
    flex: 1;
}

label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.2px;
}

input, select, textarea {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.2s ease;
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.15);
    background: rgba(31, 41, 55, 0.8);
}

select option {
    background: var(--bg-color);
    color: var(--text-primary);
}

textarea {
    resize: none;
    height: 90px;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-primary {
    background: var(--primary);
    color: #050505;
}

.btn-primary:active {
    transform: scale(0.98);
    opacity: 0.9;
}

.btn-glow:hover {
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Tasks Grid and Cards */
.tab-section {
    display: none;
}

.tab-section.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.3s ease;
}

.tasks-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.task-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.task-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.task-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task-badge-container {
    display: flex;
    gap: 6px;
}

.badge {
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-id {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

.badge-voice {
    background: rgba(56, 189, 248, 0.15);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.task-date {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.task-title-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.task-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-color);
    padding-top: 10px;
}

.meta-item strong {
    color: var(--text-primary);
}

.task-actions {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    align-items: center;
}

.btn-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.08);
}

.btn-voice-play {
    color: var(--primary);
    border-color: rgba(56, 189, 248, 0.2);
}

.btn-voice-play:hover {
    background: rgba(56, 189, 248, 0.1);
}

.btn-voice-play.playing {
    background: var(--primary);
    color: #000;
    animation: pulseGlow 1.5s infinite;
}

.btn-complete {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-color: rgba(16, 185, 129, 0.2);
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    padding: 8px 16px;
    height: 38px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-complete:hover {
    background: var(--success);
    color: #fff;
    box-shadow: 0 0 10px var(--success-glow);
}

.btn-delete {
    color: var(--danger);
    border-color: rgba(244, 63, 94, 0.2);
}

.btn-delete:hover {
    background: var(--danger);
    color: #fff;
    box-shadow: 0 0 10px var(--danger-glow);
}

/* States */
.loader {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px;
    font-size: 14px;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    background: rgba(17, 24, 39, 0.3);
    border-radius: 16px;
    border: 1px dashed var(--border-color);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 5px rgba(56, 189, 248, 0.4); }
    50% { box-shadow: 0 0 15px rgba(56, 189, 248, 0.8); }
    100% { box-shadow: 0 0 5px rgba(56, 189, 248, 0.4); }
}

/* Responsive Overrides */
@media(max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .card {
        padding: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* Modal Overlay & Dialog */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.25s ease;
}

.modal-content {
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.btn-cancel {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-secondary);
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.btn-edit {
    color: var(--warning);
    border-color: rgba(251, 191, 36, 0.2);
}

.btn-edit:hover {
    background: var(--warning);
    color: #050505;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Voice Recording Visual Styles */
.voice-controls-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.btn-voice {
    background: rgba(56, 189, 248, 0.1);
    color: var(--primary);
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-voice:hover {
    background: rgba(56, 189, 248, 0.2);
    border-color: var(--primary);
}

.btn-voice.recording {
    background: rgba(244, 63, 94, 0.15) !important;
    color: var(--danger) !important;
    border-color: var(--danger) !important;
    animation: recordingPulse 1.5s infinite;
}

.record-timer {
    font-weight: 800;
    font-size: 14px;
    color: var(--danger);
    font-family: monospace;
}

#voice-preview::-webkit-media-controls-panel {
    background-color: #1f2937;
}

@keyframes recordingPulse {
    0% { box-shadow: 0 0 5px rgba(244, 63, 94, 0.4); }
    50% { box-shadow: 0 0 15px rgba(244, 63, 94, 0.8); }
    100% { box-shadow: 0 0 5px rgba(244, 63, 94, 0.4); }
}

/* Workers Management Style */
.input-with-button-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.input-with-button-row input {
    flex: 1;
}

.workers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.worker-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.worker-chip:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(56, 189, 248, 0.3);
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.05);
}

.worker-chip-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.worker-details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.worker-subinfo {
    font-size: 11px;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.03);
    padding: 2px 6px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
}

.btn-worker-delete {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    padding: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    transition: all 0.2s ease;
}

.btn-worker-delete:hover {
    color: var(--danger);
    background: rgba(244, 63, 94, 0.15);
}

/* Analytics Tab Styles */
.analytics-summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

@media (min-width: 480px) {
    .analytics-summary-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px !important;
}

.summary-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.summary-label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 2px;
}

/* Analytics Row (chart + workload side-by-side or stacked on mobile) */
.analytics-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 550px) {
    .analytics-row {
        grid-template-columns: 1fr 1fr;
    }
}

.chart-card, .workload-card {
    padding: 20px !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-card h3, .workload-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    margin: 0;
}

.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    flex: 1;
}

.donut-chart-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}

.donut-chart {
    transform: rotate(0deg);
}

.donut-segment {
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
}

.donut-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.percentage-value {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.percentage-label {
    font-size: 10px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.dot-ontime {
    background-color: var(--success);
    box-shadow: 0 0 8px var(--success-glow);
}

.dot-overdue {
    background-color: var(--danger);
    box-shadow: 0 0 8px var(--danger-glow);
}

.legend-label {
    color: var(--text-secondary);
    flex: 1;
}

.legend-value {
    font-weight: 600;
    color: var(--text-primary);
}

/* Workload Card styling */
.workload-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.workload-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    max-height: 250px;
}

.workload-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.workload-item-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.workload-worker-name {
    font-weight: 600;
    color: var(--text-primary);
}

.workload-worker-stats {
    color: var(--text-secondary);
    font-size: 12px;
}

.workload-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
}

.workload-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.3);
    border-radius: 4px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Multi-Select Component ===== */
.multi-select-container {
    position: relative;
    width: 100%;
}

.multi-select-trigger {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    min-height: 44px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.multi-select-trigger:hover,
.multi-select-trigger.open {
    border-color: var(--primary);
    background: rgba(56, 189, 248, 0.04);
}

.multi-select-trigger.open {
    border-radius: 12px 12px 0 0;
}

.multi-select-placeholder {
    color: var(--text-secondary);
    font-size: 14px;
    pointer-events: none;
}

.multi-select-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(56, 189, 248, 0.08));
    border: 1px solid rgba(56, 189, 248, 0.25);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    white-space: nowrap;
    animation: chipIn 0.2s ease;
}

@keyframes chipIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.multi-select-chip .chip-remove {
    cursor: pointer;
    font-size: 11px;
    opacity: 0.7;
    transition: opacity 0.15s;
    margin-left: 2px;
}

.multi-select-chip .chip-remove:hover {
    opacity: 1;
}

.multi-select-arrow {
    margin-left: auto;
    font-size: 10px;
    color: var(--text-secondary);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.multi-select-trigger.open .multi-select-arrow {
    transform: rotate(180deg);
}

.multi-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.97);
    border: 1px solid var(--primary);
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    backdrop-filter: blur(12px);
}

.multi-select-dropdown.open {
    display: block;
    animation: dropdownSlide 0.2s ease;
}

@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.multi-select-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 14px;
    color: var(--text-primary);
}

.multi-select-option:hover {
    background: rgba(56, 189, 248, 0.08);
}

.multi-select-option.selected {
    background: rgba(56, 189, 248, 0.1);
}

.multi-select-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: all 0.15s ease;
}

.multi-select-option input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.multi-select-option input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0b0f19;
    font-size: 12px;
    font-weight: 700;
}

.multi-select-dropdown::-webkit-scrollbar {
    width: 4px;
}

.multi-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.multi-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* ===== Recurring Task Styles ===== */
.recurring-card {
    border-left: 3px solid #a78bfa;
}

.recurring-card.recurring-inactive {
    opacity: 0.5;
    border-left-color: rgba(167, 139, 250, 0.3);
}

.badge-recurring {
    background: rgba(167, 139, 250, 0.15);
    color: #a78bfa;
    border: 1px solid rgba(167, 139, 250, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.badge-active {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.badge-inactive {
    background: rgba(156, 163, 175, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(156, 163, 175, 0.3);
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

.btn-warning {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.btn-warning:hover {
    background: rgba(251, 191, 36, 0.25);
}

.btn-success-sm {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.btn-success-sm:hover {
    background: rgba(16, 185, 129, 0.25);
}
