/* Account Tab Styling - BIOSE Artist Listing Plugin */
/* Theme Color: #EB2044 */

/* Account navigation styling */
.account-nav {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.account-nav-item {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

.account-nav-item:last-child {
    border-bottom: none;
}

.account-nav-link {
    display: block;
    padding: 15px 20px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
}

.account-nav-link:hover {
    background-color: #f8f9fa;
    color: #EB2044;
    text-decoration: none;
    padding-left: 25px;
}

.account-nav-link.active {
    background-color: #EB2044;
    color: white;
    font-weight: 600;
    position: relative;
}

.account-nav-link.active::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Account content area */
.account-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    min-height: 400px;
}

.account-section {
    padding: 25px 30px;
}

.account-tab-content {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.account-sidebar {
    flex: 0 0 250px;
}

.account-section h3,
.account-section h4 {
    color: #333;
    margin-bottom: 20px;
}

/* Account info items */
.account-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.account-info-label {
    font-weight: 600;
    color: #555;
}

.account-info-value {
    color: #333;
}

/* Form elements */
.account-form-group {
    margin-bottom: 20px;
}

.account-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.account-select,
.account-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.account-select:focus,
.account-input:focus {
    outline: none;
    border-color: #EB2044;
    box-shadow: 0 0 0 3px rgba(235, 32, 68, 0.1);
}

/* Buttons */
.account-btn,
.btn-primary {
    background: #EB2044 !important;
    border: 2px solid #EB2044 !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.account-btn:hover,
.btn-primary:hover {
    background: #c01850 !important;
    border-color: #c01850 !important;
    transform: translateY(-1px);
    /*box-shadow: 0 2px 4px rgba(235, 32, 68, 0.3);*/
}
.biose-admin-interface button#upload-studio-image-btn , .biose-admin-interface button#upload-hero-image-btn{
    margin-right: 10px !important;
}
button.delete-gallery-item-btn i.fas.fa-trash {
    color: #fff !important;
}
/* Member dues section */
.member-dues-section {
    border: 2px dashed #EB2044 !important;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 30px;
}

.member-dues-section .dues-icon div {
    background: #EB2044 !important;
}

/* Billing history table */
.billing-history-table thead {
    background: #EB2044 !important;
    color: white;
}

.billing-history-table th {
    border: none !important;
    padding: 12px;
}

.billing-history-table td {
    padding: 12px;
    border-top: 1px solid #dee2e6;
}

/* Enhanced checkboxes and radio buttons - Better visibility */
.form-check-input {
    width: 1.5em !important;
    height: 1.5em !important;
    border: 2px solid #555 !important;
    background-color: #fff !important;
    border-radius: 0.25em !important;
    margin-top: 0 !important;
    vertical-align: top !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    /* position: relative !important; */
    cursor: pointer !important;
}

.form-check-input[type="radio"] {
    border-radius: 50% !important;
}

.form-check-input:checked {
    background-color: #EB2044 !important;
    border-color: #EB2044 !important;
}

.form-check-input:checked[type="checkbox"]::before {
    content: "✓" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: white !important;
    font-weight: bold !important;
    font-size: 0.9em !important;
    line-height: 1 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3) !important;
}

.form-check-input:checked[type="radio"]::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 0.6em !important;
    height: 0.6em !important;
    background-color: white !important;
    border-radius: 50% !important;
}

.form-check-input:focus {
    border-color: #EB2044 !important;
    box-shadow: 0 0 0 0.25rem rgba(235, 32, 68, 0.25) !important;
    outline: none !important;
}

.form-check-input:hover {
    border-color: #EB2044 !important;
}

/* Ensure labels have proper spacing and visibility */
.form-check-label {
    margin-left: 0.5rem !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    color: #333 !important;
    line-height: 1.5 !important;
}

/* Location radio buttons in enrollment forms */
.location-radio {
    width: 1.5em !important;
    height: 1.5em !important;
    border: 2px solid #555 !important;
    background-color: #fff !important;
    border-radius: 50% !important;
    margin-top: 0 !important;
    vertical-align: top !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    cursor: pointer !important;
    z-index: 2 !important;
}

.location-radio:checked {
    background-color: #EB2044 !important;
    border-color: #EB2044 !important;
}

.location-radio:checked::before {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 0.6em !important;
    height: 0.6em !important;
    background-color: white !important;
    border-radius: 50% !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .account-tab-content {
        flex-direction: column;
    }
    
    .account-sidebar {
        margin-bottom: 20px;
    }
    
    .account-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .account-nav-item {
        margin-bottom: 0;
    }
    
    .account-section {
        padding: 20px;
    }
    
    .account-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}
