/*
 Theme Name: SaasLauncher Child – Afritivity
 Theme URI: https://ativitygroup.com
 Description: Child theme for SaasLauncher with Afritivity customizations
 Author: Ativity Group
 Author URI: https://ativitygroup.com
 Template: saaslauncher
 Version: 1.0.1
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: saaslauncher-child
*/

/* ==========================================================================
   Unified, conflict-free layout for PMPro, Dashboard & Bio
   Updated: Added rental plugin matching styles for dashboard
   ========================================================================== */

/* Add your custom styles below this line */

/* Main SupportCandy Form Container */
.wpsc-ticket-form,
.wpsc-create-ticket,
.wpsc-form,
.wpsc-it-container {
    background: #111 !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 20px;
}

/* Input Fields */
.wpsc-ticket-form input,
.wpsc-ticket-form select,
.wpsc-ticket-form textarea {
    background: #1a1a1a !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    border-radius: 6px;
}

/* Placeholder text */
.wpsc-ticket-form input::placeholder,
.wpsc-ticket-form textarea::placeholder {
    color: #888 !important;
}

/* Labels */
.wpsc-ticket-form label {
    color: #fff !important;
    font-weight: 500;
}

/* Submit Button */
.wpsc-ticket-form button,
.wpsc-submit-ticket {
    background: #ffcc00 !important;
    color: #000 !important;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: bold;
}

/* Button hover */
.wpsc-ticket-form button:hover {
    background: #e6b800 !important;
}

/* Dropdown */
.wpsc-ticket-form select {
    appearance: none;
}

/* Editor toolbar */
.wpsc-ticket-form .mce-toolbar,
.wpsc-ticket-form .wp-editor-tools {
    background: #1a1a1a !important;
    border: none !important;
}
/* Dropdown field text */
.wpsc-ticket-form select {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

/* Selected option text */
.wpsc-ticket-form select option {
    background: #1a1a1a;
    color: #ffffff;
}

/* Fix for Select2 (used by SupportCandy dropdowns) */
.select2-container--default .select2-selection--single {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
}

/* Selected value (this is your main problem) */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}

/* Dropdown list */
.select2-dropdown {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid #333 !important;
}

/* Dropdown options */
.select2-results__option {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

/* Hover + selected option */
.select2-results__option--highlighted {
    background-color: #ffcc00 !important;
    color: #000 !important;
}
/* Reduce space above SupportCandy form */
.wpsc-ticket-form,
.wpsc-create-ticket {
    margin-top: 40px !important;
}