/* ============================================
   PRODUCER PROFILE MODAL STYLES
   ============================================ */

/* Modal Dialog Sizing */
.producer-modal .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

@media (max-width: 576px) {
    .producer-modal .modal-dialog {
        max-width: 100%;
        margin: 0.5rem;
    }
}

/* Modal Content */
.producer-modal .modal-content {
    border-radius: var(--radius-lg);
    border: none;
    box-shadow: var(--shadow-xl);
}

.producer-modal .modal-header {
    padding: 1rem 1.5rem 0 1.5rem;
    background-color: var(--color-bg-primary);
}

.producer-modal .modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

@media (max-width: 576px) {
    .producer-modal .modal-body {
        max-height: 80vh;
        padding: 1rem;
    }
}

/* Producer Name Clickable Styling */
.producer-name-link {
    color: var(--gray-700);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
}

.producer-name-link:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.producer-name-link:focus-visible {
    outline: 2px solid var(--brand-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Loading State */
.producer-modal-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.producer-modal-loading .spinner-border {
    width: 3rem;
    height: 3rem;
    color: var(--brand-primary);
}
