/* Option Management Modal Styles */
.option-modal-container {
    display: flex;
    flex-direction: column;
    background-color: #1a1a1a;
}

.option-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #333;
}

.option-modal-title-group h3 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.option-modal-title-group p {
    font-size: 0.875rem; /* 14px */
    color: #9ca3af; /* gray-400 */
}

.option-modal-tabs {
    padding: 1rem 1.5rem;
    background-color: #111;
    border-bottom: 1px solid #333;
}

.option-modal-content {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.option-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: flex-end;
    background-color: #1a1a1a;
}

.option-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-section, .list-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.input-label {
    font-size: 1rem;
    font-weight: 600;
    color: #FFD700; /* gold */
}

.list-label {
    font-size: 1rem;
    font-weight: 600;
    color: #9ca3af; /* gray-400 */
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.btn-gold-icon {
    background-color: #FFD700;
    color: #000;
    border: none;
    width: 2.5rem; /* 40px */
    height: 2.5rem; /* 40px */
    font-size: 1.25rem; /* 20px */
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-gold-icon:hover {
    background-color: #e6c300;
}

.item-list-container {
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-right: 0.5rem; /* for scrollbar */
}

.item-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #2a2a2a;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #444;
}

.item-text {
    color: #e5e7eb; /* gray-200 */
    font-size: 0.9rem;
}

.item-actions {
    display: flex;
    gap: 1rem;
}

.item-actions button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}