/* Crop Controls Styling */
.crop-controls {
    padding: 10px;
    background: #f8f9fa;
    border-radius: 0 0 5px 5px;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.crop-controls .btn {
    padding: 2px 8px;
    font-size: 0.75rem;
    line-height: 1.2;
    border-radius: 3px;
    flex: 0 1 auto;
    min-width: 25px;
}

.crop-controls .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.crop-controls .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

.crop-controls .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529;
    font-weight: bold;
}

.crop-controls .btn-warning:hover {
    background-color: #e0a800;
    border-color: #d39e00;
}

/* Ensure modal content is responsive */
.modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.modal-header {
    border-bottom: none;
    padding: 15px;
    background: #f8f9fa;
}

.modal-footer {
    border-top: none;
    padding: 15px;
    background: #f8f9fa;
    justify-content: center;
}

/* Fix for cropper container */
.img-container {
    min-height: 300px;
    max-height: 500px;
    background-color: #f7f7f7;
    margin-bottom: 10px;
}
