﻿.camera-controls {
    margin-bottom: 20px;
}


input[type="file"] {
    display: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

    .preview-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

.remove-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

    .remove-btn:hover {
        background: rgba(200, 35, 51, 1);
    }

.upload-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

    .upload-status.success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .upload-status.error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }

    .upload-status.loading {
        background: #d1ecf1;
        color: #0c5460;
        border: 1px solid #bee5eb;
    }

.photo-count {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}
