/* Admin Styles */
.spvg-admin-wrap {
    padding: 20px 20px 0;
}

.spvg-admin-container {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-top: 20px;
    padding: 20px;
}

.spvg-admin-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.spvg-gallery-name-section {
    margin-bottom: 20px;
}

.spvg-gallery-name-section label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.spvg-gallery-name-section input {
    font-size: 16px;
    padding: 8px 12px;
    width: 100%;
    max-width: 500px;
}

.spvg-admin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.spvg-upload-section {
    grid-column: 1 / 3;
}

.spvg-gallery-settings {
    grid-column: 1;
}

.spvg-shortcode-section {
    grid-column: 2;
}

.spvg-upload-area {
    border: 2px dashed #ccd0d4;
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    background: #f9f9f9;
}

.spvg-upload-area .button {
    font-size: 16px;
    height: auto;
    padding: 12px 24px;
}

.spvg-upload-area .dashicons {
    margin-right: 8px;
    vertical-align: middle;
}

.spvg-selected-videos {
    margin-top: 20px;
}

.spvg-videos-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.spvg-videos-list.ui-sortable {
    min-height: 100px;
}

.spvg-videos-list li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
    cursor: move;
}

.spvg-videos-list li:last-child {
    border-bottom: none;
}

.spvg-videos-list li.ui-sortable-helper {
    background: #f0f6fc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.spvg-video-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.spvg-video-info {
    flex: 1;
}

.spvg-video-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #23282d;
}

.spvg-video-id {
    color: #666;
    font-size: 12px;
}

.spvg-remove-video {
    color: #dc3232;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
}

.spvg-remove-video:hover {
    color: #a00;
}

.spvg-drag-handle {
    color: #a0a5aa;
    cursor: move;
    margin-left: 10px;
}

.spvg-drag-handle:hover {
    color: #72777c;
}

.spvg-no-videos-message {
    padding: 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    background: #f9f9f9;
    border: 1px dashed #ddd;
    border-radius: 4px;
}

.spvg-gallery-settings .form-table {
    margin-top: 0;
    background: #fff;
    border: 1px solid #ccd0d4;
    padding: 15px;
    border-radius: 4px;
}

.spvg-save-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}

#spvg-save-gallery {
    font-size: 16px;
    padding: 12px 30px;
    height: auto;
}

#spvg-save-gallery .dashicons {
    margin-right: 8px;
}

.spvg-save-message {
    margin-left: 15px;
    font-weight: 600;
}

.spvg-save-message.success {
    color: #46b450;
}

.spvg-save-message.error {
    color: #dc3232;
}

.spvg-shortcode-box {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.spvg-shortcode-box input {
    flex: 1;
    font-family: monospace;
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
}

.spvg-copy-shortcode {
    white-space: nowrap;
}

.description {
    color: #666;
    font-style: italic;
    margin-top: 5px;
    display: block;
}

.spvg-preview-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

#spvg-preview-container {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
    min-height: 200px;
}

.spvg-no-preview {
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

/* All Galleries Page */
.spvg-no-galleries {
    text-align: center;
    padding: 60px 20px;
}

.spvg-no-galleries p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.spvg-gallery-shortcode {
    font-family: monospace;
    background: #f1f1f1;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Media button styles */
.spvg-insert-media {
    margin-left: 5px;
}

.spvg-insert-media .dashicons {
    margin-right: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .spvg-admin-content {
        grid-template-columns: 1fr;
    }
    
    .spvg-upload-section,
    .spvg-gallery-settings,
    .spvg-shortcode-section {
        grid-column: 1;
    }
}