/* Categorized Photo Upload Styles */
.categorized-photo-upload {
    margin-top: 20px;
}

.photo-category-section {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.photo-category-section h4 {
    margin-bottom: 15px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.photo-category-section h4 i {
    color: #007cba;
    margin-right: 8px;
}

.category-upload {
    background-color: #fff;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-upload:hover {
    border-color: #007cba;
    background-color: #f8f9fa;
}

.category-upload.drag-over {
    border-color: #007cba;
    background-color: #e3f2fd;
}

.upload-image-counter {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.total-photo-counter {
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e8;
    border-radius: 8px;
    text-align: center;
}

.total-counter {
    font-size: 16px;
    font-weight: 600;
    color: #2e7d32;
}

.total-counter .uploaded {
    color: #007cba;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .photo-category-section {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .category-upload {
        padding: 15px;
    }
    
    .photo-category-section h4 {
        font-size: 14px;
    }
}

/* Category-specific styling */
.photo-category-section:nth-child(1) { border-left: 4px solid #4caf50; } /* External - Green */
.photo-category-section:nth-child(2) { border-left: 4px solid #2196f3; } /* Living - Blue */
.photo-category-section:nth-child(3) { border-left: 4px solid #ff9800; } /* Kitchen - Orange */
.photo-category-section:nth-child(4) { border-left: 4px solid #9c27b0; } /* Bedroom - Purple */
.photo-category-section:nth-child(5) { border-left: 4px solid #f44336; } /* Bathroom - Red */
.photo-category-section:nth-child(6) { border-left: 4px solid #607d8b; } /* Other - Grey */
