/* -------------------------------------------------
 * Select2 Overrides
 * ------------------------------------------------- */
.select2-container {
    width: 100% !important;
}
.select2-selection {
    height: auto !important;
}

/* -------------------------------------------------
 * “Add New Service” Form Styles
 * ------------------------------------------------- */
.dfm-service-form-wrap {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.dfm-service-form-wrap h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #53bfff;
}
.dfm-service-create-form {
    display: flex;
    gap: 24px;
}
.dfm-form-content {
    flex: 2;
}
.dfm-form-sidebar {
    flex: 1;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
}
.dfm-form-sidebar h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #53bfff;
}
.dfm-form-sidebar .button {
    margin-top: 16px;
}

/* Tabs */
.dfm-tabs .nav-tab {
    cursor: pointer;
}
.dfm-tabs .nav-tab-active {
    background: #53bfff;
    color: #fff;
}

/* -------------------------------------------------
 * Provider’s Services List Styles
 * ------------------------------------------------- */
.dfm-provider-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto 32px;
}
.dfm-provider-services-list .dfm-provider-service-item {
    display: flex;
    justify-content: space-between;
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.dfm-provider-services-list .service-title {
    font-weight: bold;
    color: #53bfff;
    text-decoration: none;
}
.dfm-provider-services-list .service-title:hover {
    text-decoration: underline;
}
.dfm-provider-services-list .service-price {
    font-size: 1rem;
    color: #333;
}

/* -------------------------------------------------
 * All Services Public List
 * ------------------------------------------------- */
.dfm-all-services {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    max-width: 800px;
}
.dfm-all-services li {
    padding: 12px;
    border-bottom: 1px solid #eee;
}
.dfm-all-services button.deution-purchase-service-btn {
    margin-left: 16px;
}

/* -------------------------------------------------
 * Service Gallery on Single
 * ------------------------------------------------- */
.dfm-service-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}
.dfm-service-gallery img {
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* -------------------------------------------------
 * AJAX Purchase Message
 * ------------------------------------------------- */
.deution-service-message {
    margin-left: 8px;
    font-weight: bold;
}

/* -------------------------------------------------
 * Misc Buttons
 * ------------------------------------------------- */
.button, .dfm-service-create-form .button, .settings-button {
    background: #53bfff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}
.button:hover, .settings-button:hover {
    background: #4e4e4e;
}
