/* =========================================================
   SENDMINTS – CUSTOM STYLE OVERRIDES
   Purpose:
   - Reduce aggressive red dividers
   - Restore dark-mode immersion
   - Improve visual hierarchy & depth
   ========================================================= */


/* ---------------------------------------------------------
   1. HEADER DIVIDERS – "The Red Lines Are Too Loud"
   --------------------------------------------------------- */

/* Replace loud red borders with muted mint / neutral */
.Header {
    border-bottom: 1px solid rgba(46, 242, 232, 0.35); /* muted mint */
    margin-bottom: 0 !important;
    margin-top: 0;
    padding-left: 15px;
    padding-right: 0;
    padding-top: 0;
}

/* Optional: subtle glow for section authority */
.Header {
    box-shadow: inset 0 -1px 0 rgba(46, 242, 232, 0.15);
}


/* ---------------------------------------------------------
   2. FORM INPUTS – "White Inputs Are Breaking Immersion"
   --------------------------------------------------------- */

.form-control {
    background-clip: padding-box;
    background-color: #10161D; /* dark input background */
    border: 1px solid rgba(46, 242, 232, 0.25); /* mint-tinted border */
    border-radius: 6px;
    color: #F4F7FA; /* high-contrast text */
    display: block;
    font-size: 1rem;
    line-height: 1.5;
    padding: .45rem .75rem;
    transition: 
        border-color .15s ease-in-out,
        box-shadow .15s ease-in-out,
        background-color .15s ease-in-out;
    width: 100%;
}

/* Placeholder text */
.form-control::placeholder {
    color: #6B7785;
}

/* Focus state – confident, not neon rage */
.form-control:focus {
    background-color: #0E141B;
    border-color: #2EF2E8;
    box-shadow: 0 0 0 2px rgba(46, 242, 232, 0.25);
    color: #FFFFFF;
    outline: none;
}

/* Disabled inputs */
.form-control:disabled,
.form-control[readonly] {
    background-color: #0C1117;
    border-color: #2A323D;
    color: #5F6B7A;
}


/* ---------------------------------------------------------
   3. FORM WRAPPER – "Visual Hierarchy Is a Bit Flat"
   --------------------------------------------------------- */

.editor--form {
    background-color: var(--Background-Colour2);
    border-radius: 12px;

    /* Replace aggressive top border with authority strip */
    border-top: 2px solid rgba(46, 242, 232, 0.45);

    /* Depth instead of lines */
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.02);

    margin-top: 10px;
    padding: 16px 14px;
    width: 100%;
}

/* Optional hover lift (subtle, professional) */
.editor--form:hover {
    box-shadow:
        0 14px 38px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}


/* ---------------------------------------------------------
   4. OPTIONAL: SECTION TITLES INSIDE FORMS
   --------------------------------------------------------- */

.editor--form h2,
.editor--form h3 {
    color: #2EF2E8;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(46, 242, 232, 0.25);
}


/*Table headers*/

.list-group-item-light{
background-color: transparent;
color:#2EF2E8
}

.PhoneInputInput {
    background-color: transparent!important;
}

.form-control.locked {
    background-color: darkgrey;
}