/* WP Jukebox Request - Universal Theme Integration */

/* Layout & Spacing */
.wpjr-form-wrapper, .wpjr-dj-admin, .wpjr-display-container {
    width: 100%;
    margin: 20px auto;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    color: inherit;
}

/* Neutral Card System - Lets theme background show through */
.wpjr-card {
    background: rgba(128, 128, 128, 0.05);
    border: 1px solid rgba(128, 128, 128, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

/* Form Styling - Minimalist and adaptive */
.wpjr-field {
    margin-bottom: 20px;
    text-align: left;
}

.wpjr-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.wpjr-field input,
.wpjr-field textarea,
.wpjr-field select {
    width: 100%;
    padding: 10px 15px;
    background: rgba(128, 128, 128, 0.03);
    border: 1px solid rgba(128, 128, 128, 0.2);
    border-radius: 6px;
    color: inherit;
    font-family: inherit;
    font-size: 1rem;
}

/* Button - Inherits theme primary color if possible, or uses a clean standard */
.wpjr-btn-primary {
    background: #635bff; /* Neutral modern blue */
    color: #fff !important;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.wpjr-btn-primary:hover {
    opacity: 0.9;
}

/* DJ Dashboard Grid */
.wpjr-dj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Public Display - Dynamic but integrated */
.wpjr-display-container {
    text-align: center;
}

.wpjr-queue-item {
    padding: 20px;
    border-bottom: 1px solid rgba(128, 128, 128, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s;
}

.wpjr-queue-item:hover {
    transform: translateX(5px);
}

.wpjr-song-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.wpjr-customer-name {
    font-size: 1rem;
    opacity: 0.7;
}

/* Animations */
@keyframes wpjrFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wpjr-queue-item {
    animation: wpjrFadeIn 0.5s ease-in;
}

/* Utilities */
.hidden { display: none !important; }

/* Mobile Adjustments */
@media (max-width: 600px) {
    .wpjr-queue-item { flex-direction: column; text-align: center; gap: 10px; }
}
