/* BEGIN STYLESHEET */
/* Direct stylesheet authoring is an advanced feature. Knowledge of CSS required.*/
***

/* ==========================================================================
   BODY STYLES
   ========================================================================== */
.psc-material-body {
    padding: 5%;
    gap: 20px;
}

/* ==========================================================================
   TEXT FIELD STYLES
   ========================================================================== */
/* Stripped Text Field (For the text field within a container)*/
.psc-material-text-field-stripped {
    background-color: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    min-height: 40px !important; 
    font-size: 16px !important; 
}

/* Filled Text Field (applied to the surrounding container)*/
.psc-material-text-field {
    background-color: #f5f5f5 !important;
    padding: 20px 16px 6px 16px !important;
    border: none !important;
    border-bottom: 2px solid rgba(255, 181, 176, 1) !important;
    border-radius: 4px 4px 0 0 !important;
    transition: all 0.2s ease-in-out;
    box-shadow: none !important;
    outline: none !important;
    padding-bottom: 10px;
}

.psc-material-text-field:hover {
    background-color: #ececec !important;
    border-bottom: 2px solid #7D66B8 !important;
}

.psc-material-text-field:focus,
.psc-material-text-field:focus-within {
    background-color: #e8e8e8 !important;
    border-bottom: 2px solid #6200ee !important; 
}

/* Outlined Text Field*/
.psc-material-text-field-outlined {
    background-color: transparent !important;
    padding: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.38) !important;
    border-radius: 4px !important;
    transition: all 0.2s ease-in-out;
    box-shadow: none !important;
    outline: none !important;
}

.psc-material-text-field-outlined:hover {
    border: 1px solid #7D66B8 !important;
}

.psc-material-text-field-outlined:focus,
.psc-material-text-field-outlined:focus-within {
    border: 2px solid #6200ee !important; 
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.psc-material-headline {
    font-size: 2.125rem !important; 
    font-weight: 400 !important;
    letter-spacing: 0.015em !important;
    line-height: 1.23 !important;
    color: rgba(0, 0, 0, 0.87) !important; 
    margin: 0 0 16px 0 !important;
}

/* ==========================================================================
   BUTTON STYLES
   ========================================================================== */
.psc-material-button-filled {
    background-color: rgba(255, 181, 176, 1)!important; 
    color: #ffffff !important;
    font-size: 0.875rem !important; 
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    border: none !important;
    border-radius: 100px !important; 
    padding: 10px 24px !important;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
    transition: background-color 0.2s, box-shadow 0.2s !important;
    cursor: pointer !important;
    text-transform: none !important; 
}

.psc-material-button-filled:hover {
    background-color: #7D66B8 !important; 
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.30) !important;
}

.psc-material-button-filled:active {
    background-color: #553E90 !important; 
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
}

/* Green Variant (Start / Accept / Success) */
.psc-material-button-green {
    background-color: #2E7D32 !important; /* Material Green 800 */
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 10px 24px !important;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
    transition: background-color 0.2s, box-shadow 0.2s !important;
    cursor: pointer !important;
    text-transform: none !important; 
}

.psc-material-button-green:hover {
    background-color: #7D66B8 !important; /* Lighter shade for hover */
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.30) !important;
}

.psc-material-button-green:active {
    background-color: #0D330F !important; /* Darker shade for active */
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
}

/* Red Variant (Stop / Reject / Error) */
.psc-material-button-red {
    background-color: #B3261E !important; /* MD3 Error Red */
    color: #ffffff !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.06em !important;
    border: none !important;
    border-radius: 100px !important;
    padding: 10px 24px !important;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
    transition: background-color 0.2s, box-shadow 0.2s !important;
    cursor: pointer !important;
    text-transform: none !important; 
}

.psc-material-button-red:hover {
    background-color: #7D66B8 !important; /* Lighter shade for hover */
    box-shadow: 0 4px 8px 3px rgba(0, 0, 0, 0.15), 0 1px 3px 0 rgba(0, 0, 0, 0.30) !important;
}

.psc-material-button-red:active {
    background-color: #601410 !important; /* Darker shade for active */
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.30) !important;
}

/* ==========================================================================
   CARD STYLES
   ========================================================================== */
.psc-material-card {
    background-color: #ffffff !important; 
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    transition: box-shadow 0.2s ease-in-out !important;
}

.psc-material-card:hover {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15) !important;
}

.psc-material-card-filled {
    background-color: rgba(255, 181, 176, 0.5) !important; /* MD3 Surface Variant */
    border-radius: 12px !important;
    padding: 24px !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease-in-out !important;
}

/* Optional hover state if the card acts as an interactive element */
.psc-material-card-filled:hover {
    background-color: #E6E0E9 !important;
}

.psc-material-card-filled-alt {
    background-color: #EEEEEE !important; 
    border-radius: 12px !important;
    padding: 30px !important;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    transition: box-shadow 0.2s ease-in-out !important;
}

.psc-material-card-filled-alt:hover {
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15) !important;

/* ==========================================================================
   DROPDOWN STYLES
   ========================================================================== */
/* Outer container mimicking the outlined text field */
.psc-material-dropdown-outlined {
    background-color: transparent !important;
    border: 1px solid rgba(0, 0, 0, 0.38) !important;
    border-radius: 4px !important;
    transition: all 0.2s ease-in-out;
}

.psc-material-dropdown-outlined:hover {
    border: 1px solid rgba(0, 0, 0, 0.87) !important;
}

.psc-material-dropdown-outlined:focus-within {
    border: 2px solid #6200ee !important; 
}

/* Strip the default Ignition inner border and match height */
.psc-material-dropdown-outlined .ia_dropdown__control {
    border: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    min-height: 40px !important; 
}





/* ==========================================================================
   TOGGLE SWITCH STYLES
   ========================================================================== */
.psc-material-toggle {
    cursor: pointer !important;
}

/* Ensure the track is perfectly rounded */
.psc-material-toggle .ia_toggleSwitch__track {
    border-radius: 16px !important;
}

/* Add MD3 elevation drop-shadow to the thumb */
.psc-material-toggle .ia_toggleSwitch__thumb {
    border-radius: 50% !important;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 2px 4px 0px rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.2s ease-in-out !important;
}

/* Hover State - Creates the classic Material semi-transparent halo effect */
.psc-material-toggle:hover .ia_toggleSwitch__thumb {
    /* The '10px' spread at the end creates the halo */
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3), 0px 2px 4px 0px rgba(0, 0, 0, 0.15), 0 0 0 10px rgba(103, 80, 164, 0.08) !important; 
}
/* BEGIN STYLE CLASSES */
.psc-CalendarTitle {
  font-size: 2em;
  font-weight: bold;
  margin: 0.2em;
  margin-bottom: 0.5em;
  text-align: center;
}

.psc-CheckBorderBlack {
  border-color: #000000;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  outline-style: none;
}

.psc-CheckBorderRed {
  border-color: #FF0000;
  border-style: solid;
  border-width: 1px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  outline-style: none;
}

.psc-CheckTBMargin {
  margin-bottom: 2em;
  margin-top: 2em;
}

.psc-Framework\/Card\/Bold_Text {
  font-weight: bold;
}

.psc-Framework\/Card\/Card {
  background-color: #FAFAFA;
  border-color: #D5D5D5;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  box-shadow: 0px 2px 4px rgba(0, 0, 40, 0.15);
  margin: 5px;
}

.psc-Framework\/Card\/Embedded {
  margin: 5px;
}

.psc-Framework\/Card\/Item {
  padding-bottom: 4px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 4px;
}

.psc-Framework\/Card\/Item_Border {
  border-bottom-color: #D5D5D5;
  border-bottom-style: solid;
  border-bottom-width: 1px;
}

.psc-Framework\/Card\/Label {
  color: #8E8E8E;
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  margin-right: 10px;
  text-transform: uppercase;
}

.psc-Framework\/Card\/Row {
  margin-bottom: 2px;
}

.psc-Framework\/Card\/Title {
  background-color: #E6EAEEAD;
  border-bottom-color: #D5D5D5;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #2E2E2E;
  font-size: 12px;
  font-weight: bold;
  padding-left: 6px;
  padding-right: 6px;
  text-transform: uppercase;
  fill: #2E2E2E;
}

.psc-Framework\/Card\/Value {
  color: #000080;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}

.psc-Framework\/PDFViewer\/Button {
  background-image: linear-gradient(180deg, #59B1E8 0%, #47A9E6 100%);
  border-color: #47A9E6;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  line-height: 18px;
  text-transform: uppercase;
  fill: #FFFFFF;
}

.psc-Framework\/PDFViewer\/Title {
  font-size: 16px;
  font-weight: bold;
  line-height: 19px;
  fill: #FAFAFB;
}

.psc-Headers {
  background-color: #D6E3EE;
  border-bottom-color: #CCCCCC;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-left-color: #CCCCCC;
  border-left-style: solid;
  border-left-width: 2px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-right-color: #CCCCCC;
  border-right-style: solid;
  border-right-width: 2px;
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.psc-NavButton {
}

.psc-Roboto {
  color: #4D4D4D;
  font-family: Roboto;
  font-size: 0.8em;
  font-weight: bold;
  margin-bottom: 5px;
  margin-left: 10px;
  text-transform: uppercase;
}

.psc-SideMargins {
  padding-left: 5px;
  padding-right: 5px;
}

.psc-SmallHeaders {
  border-bottom-color: #CCCCCC;
  border-bottom-style: double;
  border-bottom-width: 2px;
  border-left-color: #CCCCCC;
  border-left-style: solid;
  border-left-width: 0;
  border-right-color: #CCCCCC;
  border-right-style: solid;
  border-right-width: 0;
  border-top-color: #CCCCCC;
  border-top-style: solid;
  border-top-width: 0;
  font-family: Roboto;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
}

.psc-Style {
  color: #000000;
  font-family: Arial;
  font-size: 18px;
  font-style: normal;
  font-weight: bold;
}

.psc-Style_Blue {
  color: #4747FF;
  font-family: sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: bold;
  padding-bottom: 11px;
  padding-right: 5px;
  padding-top: 14px;
  text-indent: 10px;
}

.psc-TextFieldPadding {
  margin-left: 4px;
  margin-right: 4px;
  padding-left: 3px;
  padding-right: 3px;
}

.psc-TextFieldRound {
  border-radius: 6px;
}

.psc-Widget\/Center {
  border-color: #D5D5D5;
  border-style: solid;
  border-width: 3px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border-bottom-left-radius: 200px;
  border-bottom-right-radius: 200px;
  font-family: Noto Sans;
  font-size: 50px;
  font-weight: bold;
  text-align: center;
}

.psc-checkbox {
  line-height: 17px;
}

.psc-dropdownRound {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  margin-left: 10px;
  margin-right: 10px;
}

.psc-hoverGrow {
}

.psc-hoverHand {
}
.psc-hoverHand:hover {
  cursor: pointer;
}

.psc-largeLabel {
  border-color: #D5D5D5;
  border-style: solid;
  border-width: 2px;
  border-radius: 5px;
  font-size: 22px;
  padding: 3px;
}

.psc-reg {
  background-color: #FFEB00;
  border-color: #000000;
  border-style: solid;
  border-width: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  font-family: Verdana;
  font-size: 30px;
  font-weight: bold;
  margin: 10px;
  margin-top: 15px;
  padding: 5px;
  padding-left: 5px;
  text-align: center;
}

.psc-textboxLabel {
  color: #AAAAAA;
  font-size: 14px;
  margin-left: 10px;
  margin-top: 10px;
}

.psc-tooltip {
  background-color: #000000;
  border-color: #D5D5D5;
  border-width: 3px;
  border-radius: 3px;
  color: #FFFFFF;
  margin: auto;
}
.psc-tooltip:hover {
}

.psc-visible {
}
