/* Commission-specific styles - extends style.css */

body {
    background: url("pink2.jpg") center center / cover no-repeat fixed;
}

.page-title {
    color: #fdc0cb;
    text-align: center;
    font-size: clamp(28px, 3vw, 36px);
    margin: 0 0 20px 0;
    text-shadow: 0 0 8px rgba(253, 192, 203, 0.6);
    padding-top: 10px;
}

.queue-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.queue-section {
    background: rgba(255, 241, 246, 0.88);
    border: 2px solid #fdc0cb;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(253, 192, 203, 0.25);
}

.queue-title {
    color: #c5337b;
    font-size: clamp(20px, 2vw, 24px);
    margin: 0 0 15px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #fdc0cb;
    text-shadow: 0 0 4px rgba(197, 51, 123, 0.3);
}

.commission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.commission-list li {
    padding: 10px 12px;
    background: rgba(253, 192, 203, 0.15);
    border: 1px solid #fdc0cb;
    border-radius: 6px;
    transition: 0.2s ease;
}

.commission-list li:hover {
    background: rgba(253, 192, 203, 0.28);
    transform: translateX(4px);
}

.commission-list li.priority {
    background: rgba(255, 200, 100, 0.25);
    border-color: #ffb347;
    font-weight: bold;
}

.commission-list li.priority:hover {
    background: rgba(255, 200, 100, 0.38);
}

.commission-list label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: clamp(14px, 1.2vw, 16px);
    color: #2a2a2a;
    gap: 10px;
}

.commission-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #c5337b;
    flex-shrink: 0;
}

.commission-list input[type="checkbox"]:checked + label,
.commission-list label:has(input[type="checkbox"]:checked) {
    opacity: 0.5;
    text-decoration: line-through;
}

/* Feral Grid Styles */
.feral-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.feral-item {
    background: rgba(253, 192, 203, 0.2);
    border: 2px solid #fdc0cb;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: 0.2s ease;
}

.feral-item:hover {
    background: rgba(253, 192, 203, 0.32);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(253, 192, 203, 0.3);
}

.feral-item h3 {
    font-size: 16px;
    color: #2a2a2a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.feral-item .price {
    font-size: 18px;
    font-weight: bold;
    color: #c5337b;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .feral-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 600px) {
    .queue-section {
        padding: 15px;
    }

    .feral-grid {
        grid-template-columns: 1fr;
    }

    .commission-list label {
        font-size: 14px;
    }
}