/* Dashboard Zoom Control - v1.0.0 - Inline Version */

/* Inline zoom controls */
.zoom-btn {
    width: 28px;
    height: 28px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 6px;
    color: #6366f1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: scale(1.05);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.zoom-slider-inline {
    width: 100px;
    height: 4px;
    background: rgba(148, 163, 184, 0.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
    -webkit-appearance: none;
}

.zoom-slider-inline::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: #6366f1;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zoom-slider-inline::-webkit-slider-thumb:hover {
    background: #818cf8;
    transform: scale(1.2);
}

.zoom-slider-inline::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #6366f1;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.zoom-slider-inline::-moz-range-thumb:hover {
    background: #818cf8;
    transform: scale(1.2);
}

.zoom-reset-inline {
    width: 28px;
    height: 28px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 6px;
    color: #22c55e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zoom-reset-inline:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
    transform: scale(1.05);
}

.zoom-reset-inline:active {
    transform: scale(0.95);
}
