/* * File: /css/esports-infrastructure.css 
 * Description: Styling for the GWL Esports custom infrastructure.
 */

/* ============================================================================
 * BUDDYPRESS TEAM CREATION LINK (HOVER FIX)
 * ============================================================================ */

/* Target the specific list item ID and link you provided */
li#groups-create a {
    color: #98cb00 !important;
    transition: color 0.2s ease-in-out;
}

li#groups-create a:hover,
li#groups-create a:focus,
li#groups-create a:active {
    color: #5de000 !important;
    text-decoration: none !important; /* Prevents theme underlines from appearing */
    background: transparent !important; /* Prevents theme hover backgrounds from swallowing the text */
}

/* ============================================================================
 * GWL TEAM CREATION WIZARD NAVIGATION
 * ============================================================================ */

/* Base state for all wizard steps 
   (Upcoming steps are SPANS, previously completed steps are LINKS) */
body #buddypress ol.group-create-buttons li a,
body #buddypress ol.group-create-buttons li span {
    color: #007bff !important; /* The GWL blue for unselected */
    background-color: transparent !important;
    transition: all 0.2s ease-in-out;
    display: inline-block !important; /* Ensures the highlight box shapes correctly */
    padding: 8px 15px !important; /* Gives the black highlight box some breathing room */
}

/* Hover state (Only applies to clickable 'a' links) */
body #buddypress ol.group-create-buttons li a:hover,
body #buddypress ol.group-create-buttons li a:focus {
    color: #dd9933 !important; /* Soft gold on hover */
    text-decoration: none !important;
}

/* Active / Current step state (The highlighted box) */
body #buddypress ol.group-create-buttons li.current a,
body #buddypress ol.group-create-buttons li.current span {
    color: #dd9933 !important; /* Soft gold text */
    background-color: #000000 !important; /* Black highlight box */
    text-decoration: none !important;
    border: none !important;
}

/* ============================================================================
 * GWL TEAM CREATION WIZARD SUBHEADER
 * ============================================================================ */

/* Target the specific subhead on the creation and directory pages */
body #buddypress h2.bp-subhead {
    color: #ffffff !important;
}

/* ============================================================================
 * GWL TEAM CREATION WIZARD INPUT FIELDS
 * ============================================================================ */

/* Target the specific Team inputs by their exact IDs */
body #buddypress input#group-name,
body #buddypress textarea#group-desc,
body #buddypress input#gwl-team-tag {
    background-color: #1a1a1a !important; 
    color: #e0e0e0 !important; 
    border: 1px solid #333333 !important; 
    border-radius: 4px !important; 
    padding: 10px !important;
    width: 100% !important; 
    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

/* Focus state when actively typing */
body #buddypress input#group-name:focus,
body #buddypress textarea#group-desc:focus,
body #buddypress input#gwl-team-tag:focus {
    border-color: #5de000 !important; 
    background-color: #000000 !important; 
    outline: none !important;
}

/* ============================================================================
 * GWL TEAM CREATION WIZARD - PRIVACY OPTIONS
 * ============================================================================ */

/* Hide the "Public" radio button, its label, and its description list */
body #buddypress label[for="group-status-public"],
body #buddypress input#group-status-public,
body #buddypress ul#public-group-description {
    display: none !important;
}