/**
 * Mascot Switcher - Frontend & Admin Styles
 */

/* Frontend Styles */
.mascot-switcher-container {
    width: 100%;
    margin: 20px 0;
    text-align: center;
    clear: both;
}

.mascot-switcher-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Admin Styles */
.mascot-switcher-admin .mascot-preview {
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
}

.mascot-switcher-admin .mascot-preview img {
    max-width: 200px;
    height: auto;
    display: block;
}

.mascot-switcher-admin .mascot-image-url {
    width: 100%;
    max-width: 500px;
}

.mascot-switcher-admin .mascot-upload-button,
.mascot-switcher-admin .mascot-remove-button {
    margin-left: 5px;
}

.custom-category-item {
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

.custom-category-item label {
    font-weight: 600;
    margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 782px) {
    .mascot-switcher-image {
        max-width: 100%;
    }
    
    .mascot-switcher-admin .mascot-upload-button,
    .mascot-switcher-admin .mascot-remove-button {
        display: block;
        margin: 5px 0;
        width: 100%;
    }
}

