/**
 * BAY Image Size Scanner Admin Styles
 */
.bayimsis-image-scanner-wrap {
    max-width: 1200px;
    margin: 20px 0;
}

.bayimsis-scanner-card {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.bayimsis-scanner-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.bayimsis-option-group {
    margin-bottom: 15px;
}

.bayimsis-option-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.bayimsis-controls {
    margin-top: 15px;
}

.bayimsis-progress-container {
    margin-top: 15px;
}

.bayimsis-progress-bar {
    background-color: #f1f1f1;
    height: 20px;
    width: 100%;
    border-radius: 3px;
    margin-top: 5px;
}

.bayimsis-progress-fill {
    background-color: #0073aa;
    height: 100%;
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease;
}

.bayimsis-summary-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
}

.bayimsis-stat {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

.bayimsis-stat-label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.bayimsis-stat-value {
    font-size: 18px;
    color: #0073aa;
}

.bayimsis-table-container {
    overflow-x: auto;
}

.bayimsis-results-table {
    width: 100%;
    border-collapse: collapse;
}

.bayimsis-results-table th {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: left;
}

.bayimsis-results-table td {
    padding: 8px 10px;
    border-bottom: 1px solid #f1f1f1;
}

@media screen and (max-width: 782px) {
    .bayimsis-scanner-options {
        flex-direction: column;
    }
    
    .bayimsis-option-group {
        width: 100%;
    }
}