/**
 * Tribute Image Cropper Styles
 * Minimal styling for the Cropper.js modal overlay
 */

.tribute-cropper-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.tribute-cropper-content {
    background: white;
    border-radius: 8px;
    padding: 20px;
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
}

.tribute-cropper-content h3 {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    color: #1f2937;
}

.tribute-cropper-container {
    max-width: 600px;
    max-height: 600px;
    margin: 20px 0;
}

.tribute-cropper-container img {
    max-width: 100%;
    display: block;
}

.tribute-cropper-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.btn-apply-crop,
.btn-cancel-crop {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-apply-crop {
    background: #28a745;
    color: white;
}

.btn-apply-crop:hover {
    background: #218838;
}

.btn-cancel-crop {
    background: #dc3545;
    color: white;
}

.btn-cancel-crop:hover {
    background: #c82333;
}

/* Zoom control slider */
.zoom-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0;
    padding: 12px 15px;
    background: #f3f4f6;
    border-radius: 8px;
}

.zoom-control label {
    font-weight: 500;
    color: var(--color-primary-dark);
    white-space: nowrap;
}

.zoom-btn {
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.zoom-btn:hover {
    background: #4338ca;
}

.zoom-btn:active {
    background: #3730a3;
}

.zoom-control input[type="range"] {
    flex: 1;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: #d1d5db;
    border-radius: 3px;
    outline: none;
}

.zoom-control input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: #4f46e5;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.zoom-control input[type="range"]::-webkit-slider-thumb:hover {
    background: #4338ca;
}

.zoom-control input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: #4f46e5;
    border-radius: 50%;
    cursor: pointer;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tribute-cropper-content {
        max-width: 95%;
        max-height: 95%;
        padding: 15px;
    }

    .tribute-cropper-container {
        max-width: 100%;
        max-height: 400px;
    }

    .tribute-cropper-actions {
        flex-direction: column;
    }

    .btn-apply-crop,
    .btn-cancel-crop {
        width: 100%;
    }
}
