/**
 * Create Model Page CSS
 * 
 * Page-specific styles for the Create Model admin page
 * Shared components are in components.css
 * 
 * @package ExploreXR
 * @since 1.0.8
 */

/* Responsive size options grid - shared styles moved to components.css */

/* Media fields */
.explorexr-media-field {
    display: flex;
    gap: 10px;
}

.explorexr-media-field input[type="text"] {
    flex-grow: 1;
}

/* Form actions */
.explorexr-form-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* Optional field indicator, form layout, tabs, and device tabs - shared styles moved to components.css */

/* Input elements styling */
.explorexr-form-group input[type="text"],
.explorexr-form-group input[type="number"],
.explorexr-form-group input[type="email"],
.explorexr-form-group input[type="url"],
.explorexr-form-group select,
.explorexr-form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #dcdcde;
    border-radius: 4px;
    background-color: #fff;
    color: #2c3338;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

.explorexr-form-group input[type="text"]:focus,
.explorexr-form-group input[type="number"]:focus,
.explorexr-form-group input[type="email"]:focus,
.explorexr-form-group input[type="url"]:focus,
.explorexr-form-group select:focus,
.explorexr-form-group textarea:focus {
    border-color: #2271b1;
    box-shadow: 0 0 0 1px #2271b1;
    outline: none;
}

.explorexr-form-group input.small-text {
    width: 120px;
}

/* File input styling */
.explorexr-form-group input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px dashed #dcdcde;
    border-radius: 4px;
    background-color: #f9f9f9;
    cursor: pointer;
}

.explorexr-form-group input[type="file"]:hover {
    border-color: #2271b1;
    background-color: #f0f7fc;
}

/* Custom styled file input, card note, and button styling - shared/inherited from components.css and admin-styles.css */

/* Input group styling - shared styles moved to components.css */

/* Checkbox and radio improvements - shared styles moved to components.css */
