/*
color scheme:
- #002060: dark blue
- #abc4c9: light blue
- #287a8c: teal (messages)
- #f4f4f4: light grey
- #e2e6ea: grey
- #ffffff: white
- #ddd: light grey
- #D4AF37: gold
*/

/* 
Define font color for nav-links class to be a visual indicator of the active environment 
- #002060: dark blue - Production
- #E59EDD: pink / purple - Staging
- #3CA59C: teal - Development

Example:
  body {
    color: var(--font-color);
  }

*/
:root {
    --font-color: #002060; /* Default fallback color */
    --username-font-color: #ddd;
    --trip-location-font-color: black;
  }

  
/************************************************
* STYLES FOR STANDARD HTML ELEMENTS
************************************************/

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f5f9;

}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #002060;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #002060;
}

h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #002060;
 }

h4 {
    margin-bottom: 20px;
    color: #002060;
 }

.headerContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #abc4c9;
    border-bottom: 1px solid #ddd;
}


/* START COMMON CLASSES */
table {
    width: 100%;
    margin-bottom: 40px;
}

th {
    padding: 15px;
    background-color: #abc4c9;
    border: 1px solid #ddd;
    color: #002060;
    text-align: center;
}

td {
    padding: 15px;
    border: 1px solid #ffffff;
    color: #002060;
    text-align: center;
}

tfoot {
    background-color: #d7e4e7;
    font-weight: bold;
}

/* General form styles */
form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 0px;
    font-weight: bold;
    color: #002060; 
}

input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="date"], input[type="checkbox"], textarea {
    width: 90%;
    padding: 10px 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="date"]:focus, input[type="checkbox"]:focus, textarea:focus {    
    border-color: #002060; 
    box-shadow: 0 0 8px rgba(0, 32, 96, 0.3);
    outline: none;
}

input[type="checkbox"] {
    width: auto;
}

/* Button styles */
button[type="submit"], .btn {
    background-color: #002060; 
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.3s;
}

button[type="submit"]:hover, .btn:hover {
    background-color: #D4AF37; 
    transform: translateY(-2px);
}

button:disabled {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    opacity: 0.6;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="checkbox"], input[type="radio"] {
    margin-right: 10px;
}

select {
    width: 90%;
    padding: 10px 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

select:focus {
    border-color: #002060;
    box-shadow: 0 0 8px rgba(0, 32, 96, 0.3);
    outline: none;
}

/************************************************
* DEPRECATED: STYLES FOR NAMED HTML ELEMENTS
************************************************/

#divPopupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1000;
}

#divPopupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8); 
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#spnClosePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    color: #333;
}

/* START: rate_sheet_power_add.html */
#popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1000;
}

#popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9); 
    padding: 20px;
    border-radius: 10px;
    width: 700px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    color: #333;
}
/* END: rate_sheet_power_add.html */

/* START: registration.html */
#tblPaymentOptions th, 
#tblPaymentOptions td {
    padding: 3px; /* Adjust the value as needed */
}
/* END: registration.html */

/* START: payments.html */
#tblNonVanilla, #tblNonVanilla th, #tblNonVanilla td, #tblNonVanilla tbody, #tblNonVanilla tr {
    border: none !important;
    border-color: transparent !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    padding: 8px 10px !important;
}        
/* END: payments.html */


/************************************************
* GENERAL STYLE CLASSES
************************************************/

/* Div classes */
.divPopupOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
}

.divPopupContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent popup */
    padding: 20px;
    border-radius: 10px;
    width: 600px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.divBottom input[type="number"] {
    margin-bottom: 0px !important; /* Override margin-bottom specifically for these inputs */
}

/* Not used except for above */
.divBottom {
    margin-bottom: 20px;
}

.divContainer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin-top: 0px;
}

.divLeft, .divCenter {
    flex: 1;
    padding-right: 10px;
    margin: 0px;
}

.divRight {
    flex: 3; 
    min-width: 700px;
    padding: 0px;
    margin: 0px;
}

/* Std div 2 - user for evenly spaced columns */
.divStd2Container {
    display: flex;
    align-items: center; 
    height: 60%;
}

.divStd2Left, .divStd2Center {
    display: flex; 
    flex-direction: column; 
    align-items: flex-start; 
    flex: 1; 
    padding: 0px;
    margin: 0px;
}

.divStd2Right {
    display: flex;
    align-items: center; 
    justify-content: right; 
    flex: 0 0 auto; 
    padding: 0px;
    margin: 0px;   
}

.minus18 {
    margin-top: -18px;    
}

.minus50Left {
    margin-left: -50px;    
}

/* Std div - use for wide center column */
.divStdContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start; 
    margin-top: 10px;
}

.divStdLeft, .divStdRight {
    flex: 1;
    padding: 0px;
    margin: 0px;
}   

.divStdCenter {
    flex: 3;  
    padding: 0px;
    margin: 0px; 
} 

.divStdCenterFlex1 {
    flex: 1; 
    padding: 0px;
    margin: 0px; 
}

.divPriceContainer {
    display: flex;
    width: 100%;
    align-items: flex-start; 
    margin-top: 0; 
}

.divPriceSection {
    padding-top: 0; 
    padding-right: 20px; 
    margin-top: 0; 
    min-width: 150px;
}

.divTableContainer {
    flex: 3;
    overflow-x: auto; 
}

.divDetailSelect {
    display: flex;
}

.flex {
    display: flex;
}

.flexColumn {
    display: flex;
    flex-direction: column;
}

.flex1 {
    flex: 1;
}

.flex2 {
    flex: 2;
}

.flex3 {
    flex: 3;
}

.flexEnd {
    display: flex !important;
    justify-content: flex-end;
    align-items: flex-end;
}

.flexGrow {
    /* flex: table-cell; */
    flex-grow: 1 !important;
    height: 100% !important;
    align-items: stretch !important;
    vertical-align: middle !important;
}

.flexStart {
    display: flex !important;
    /*justify-content: flex-start; */
    align-items: flex-start;
}

.flexCenter {
    display: flex !important;
    align-items: center;
    height: 100%;
}

.flexBottom {
    display: flex !important;
    height: 100%;
}

.flexBottomItem {
    margin-top: auto; /* Pushes this item to the bottom */
}

.flexStretch {
    display: flex !important;
    align-items: stretch;
}

.flexGrow {
    flex-grow: 1; 
    height: 100%;
}

.flexBetween {
    display: flex;
    justify-content: space-between; /* Space between the two button groups */
    width: 100%; /* Ensures the divButtons fills the available space */
}

.flexFullWidth {
    display: flex;
    width: 100%;
}

/* Custom classes */
.height110 {
    height: 110px;
}

.heightFull {
    height: 100%;
}

.width20 {
    width: 20px;
}

.width100 {
    max-width: 100px;
}

.width120 {
    width: 120px !important;
}

.width150 {
    width: 150px;
}

.width180 {
    width: 180px !important;
}

.width240 {
    width: 240px;
}

.width300 {
    width: 300px;
}

.width700 {
    width: 700px !important;
}

.width800 {
    width: 800px !important;
}

.inlayContainer {
    position: relative;
    width: 100%;
    height: 100%;
}

.inlayContainer img {
    width: 100%;            
}

.toggle {
    /* empty */
}

.btnWide {
    width: 170px;
}

.justifyLeft {
    justify-content: left;
}

.alignLeft {
    text-align: left;
}

.alignRight {
    text-align: right;
}

.alignCenter {
    text-align: center;
}

.alignMiddle {
    vertical-align: middle !important;
}

.alignTop {
    vertical-align: top !important;
}

.alignItemsTop {
    vertical-align: top !important;
    align-items: flex-start !important;
}

.marginTop10 {
    margin-top: 10px;
}

.marginTop0 {
    margin-top: 0px !important;
}

.marginBottom0 {
    margin-bottom: 0px !important;
}

.marginRight20 {
    margin-right: 20px !important;
}

.paddingLeft30 {
    display: block;       /* Ensures text-indent applies */
    padding-left: 30px;   /* Ensures wrapped lines are also indented */
}

.margin0 {
    margin: 0px;
}

.marginBlock0 {
    margin-block-start: 0; 
    margin-block-end: 0;
}

.borderBox {
    box-sizing: border-box;
}

.padding0 {
    padding: 0px !important;
}

.padding0Horizontal {
    padding-left: 0px;
    padding-right: 0px;
}

.padding20Horizontal {
    padding-left: 20px;
    padding-right: 20px;
}

.padding5 {
    padding: 5px;
}

.padding5Vertical {
    padding-top: 5px;
    padding-bottom: 5px;
}

.paddingTop5 {
    padding-top: 5px;
}

.padding10 {
    padding: 10px !important;
}

.padding20 {
    padding: 20px !important;
}

.invisible {
    border: 0;
    border-collapse: collapse;
    align-items: center;
}

.colorBkgNone {
    background-color: transparent;
    border-color: transparent;
}

.copyIcon {
    display: flex;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.notification {
    visibility: hidden;
    background-color: #002060;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
    position: fixed; /* Keep it fixed so it stays in place even if you scroll */
    top: 20px; /* Adjust distance from the top */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust positioning to exactly center it */
    z-index: 1050;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s;
}

.notification.show {
    visibility: visible;
    opacity: 1; /* Fade in */
}

.reverseVideo {
    background-color: #002060 !important;
    color: white !important;
    transition: all 0.3s ease;
}
  
.balancedText {
    text-wrap: balance;
}
  
.spnDetailRecords {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 20px; 
}

.tinyFrame {
    display: inline-block;
    vertical-align: middle; 
    width: 20px; 
    height: 20px; 
}

.tinyFrame img {
    vertical-align: top; 
    width: 100%;
    height: 100%;
    object-fit: contain; 
}

.arrowButton {
    background-color: #4CAF50; 
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: background-color 0.3s;
    margin-top: 38px; 
}

.arrowButton::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 30%;
    width: 12px; 
    height: 2px;
    background-color: white;
    transform: translateY(-50%);
}

.arrowButton::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 60%;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid white;
    transform: translateY(-50%);
}

.arrowButton:hover {
    background-color: #45a049; 
}

.borderCollapseSeparate {
    border-collapse: separate;
}

.message {
    color: #287a8c;
}


.messageColor {
    color: #C8972B !important;
}

.wideInput {
    width: 400px;
}


.highlighted {
    background-color: #d8c277;
}

.btnDetail {
    margin: 5px;
    padding: 10px;
    background-color: #002060;
    color: white;
    border: none;
    cursor: pointer;
}

.btnDetail:hover {
    background-color: #0056b3;
}

.percentInputContainer {
    display: flex;
    align-items: center;
    margin-top: 10px; /* Add some space between the label and input field */
    position: relative;
}

.percentInput {
    width: 60px; /* Adjust this value to make the input box smaller */
    max-width: 60px; /* Ensure the input doesn't exceed this width */
    padding-left: 0;
    margin: 0;
    text-align: right; /* Align text to the right for better aesthetics */
}

.percentSymbol {
    margin-left: 5px; /* Adjust margin to control the space between input and symbol */
}

.numberInput {
    width: 70px; /* Adjust this value to make the input box smaller */
    max-width: 80px; /* Ensure the input doesn't exceed this width */
    padding-left: 0;
    margin: 0;
    text-align: right; /* Align text to the right for better aesthetics */
    position: relative;
}

.navLinks {
    display: flex;
    gap: 12px;
}

.navLinks a {
    text-decoration: none;
    color: var(--font-color);
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.navLinks a:hover {
    color: #002060;
}

.titleNavContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.gridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.gridItem {
    background-color: #f4f4f4;
    border: 1px solid #002060;
    border-radius: 8px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gridItem a {
    display: inline-block;
    text-decoration: none;
    color: #002060;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px 20px;
    width: 75%;
    height: 75%;
    background-color: #e2e6ea;
    border: 2px solid #002060;
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.gridItem a:hover {
    background-color: #002060;
    color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section {
    border: 1px solid #ccc;
    margin: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.sectionHeader {
    background: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.toggleArrow {
    margin-right: 10px;
    transition: transform 0.3s ease;
    color: #002060;
}

.sectionContent {
    padding: 10px;
    display: none;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.displayNone {
    display: none !important;
}

/* Text classes */
.blue {
    color: #002060;
}

.bold {
    font-size: 16px; 
    font-weight: 600;
}

.large {
    font-size: 18px;
}

.boldBlackLarge {
    color: var(--trip-location-font-color); 
    font-size: 18px; 
    font-weight: 600;
}

.green {
    color: #4CAF50;
}

.red {
    color: #f44336;
}

.whiteBkgd {
    background-color: white;
}

.grayBkgd {
    background-color: #f4f4f4;
    /*- #e2e6ea: grey;*/
}

.demiBold {
    font-size: 16px; 
    font-weight: 500;
}

/* Button classes */
.btn {
    display: inline-block;
    background-color: #002060;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #002060;
}

.btnAdd {
    display: inline-block;
    margin-bottom: 20px;
}

/* User info classes */
.userInfo {
    text-align: right;
    padding: 20px;
    color: var(--username-font-color);
}

.userInfo img {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.userInfo span {
    margin-left: 10px;
    vertical-align: middle;
}

/* Table classes */
.tblThin, .tblThin th, .tblThin td, .tblThin tbody, .tblThin tr {
    padding: 5px; /* Adjust the value as needed */
    border: 0px;
}

.tblBorderCollapse {
    border-collapse: collapse;
}

.tblDetailRecords {
    table-layout: fixed;
    width: 100%;
}


.tblDetailRecords th, .tblDetailRecords td {
    padding: 10px;
    word-wrap: break-word;
    vertical-align: middle;
}

.tblDetailRecords th:first-child,
.tblDetailRecords td:first-child {
    width: 20%;
}

.tblDetailRecords th:not(:first-child),
.tblDetailRecords td:not(:first-child) {
    width: 10%;
}

.tblDetailRecords input[type="text"],
.tblDetailRecords input[type="number"] {
    width: 90%; 
    min-width: 100px;
    box-sizing: border-box;
    margin: 0 auto; 
}

.tblEqualColumns {
    width: auto;
    table-layout: auto;
}
 
.tdEqualColumns {
    white-space: nowrap; /* Prevents text from wrapping */
    text-align: center;
    width: 1%; /* Ensures both columns shrink to fit */
}

/* Form classes */
.frmWide {
    max-width: 800px;
}

.frmMaxWidth1000 {
    max-width: 1000px;
}

.frmWidth600 {
    width: 600px;
}

.frmWidth800 {
    width: 800px !important;
}

.frmUnderstated {
    display: inline;
    background-color: unset;
    box-shadow: unset;
    border-radius: unset;
    padding: unset;
}

.frmAvailablePackages {
    width: 100%;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    max-width: 100%; 
    padding: 10px;
    text-align: left;
}

.frmNoStyle {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-width: none;
}

/* Media classes */
@media (max-width: 768px) {
    .headerContainer {
        flex-direction: column;
        align-items: center;
    }

    .navLinks {
        flex-direction: column;
        align-items: center;
    }

    table, th, td {
        font-size: 0.9em;
    }
}

/* Custom styles for SweetAlert2 popups */
.swalCustomPopup {
    font-family: 'Roboto', sans-serif;
    background-color: #f3f5f9;
  }
  
  .swalCustomTitle {
    color: #002060; /* Custom title color */
    font-size: 20px;
  }
  
  .swalCustomConfirm {
    background-color: #002060;
    color: white;
  }
  
  .swalCustomCancel {
    background-color: #002060;
    color: white;
  }
  
  .swalParagraph {
    font-family: 'Roboto', serif;
    font-size: 18px;
  }
  
  .swalList {
    list-style-type: square;
    text-align: left; /* Ensures the list items are aligned to the left */
    padding-left: 20px; /* Adds some padding for indentation */
    font-size: 16px;
  }
  

  /* styles-external.css integration */

  /* Existing styles from styles.css */

/* Add any previously conflicting classes or global definitions here */

/************************************************
* UNIQUE STYLES FROM STYLES-EXTERNAL.CSS
************************************************/

#checkout {
    width: 50vw;
}
  
.hidden {
    display: none;
}

.divLineRoundedCorners {
    border: 1px solid black; /* Thin border */
    border-radius: 5px; /* Rounded corners */
    padding: 10px; /* Optional: Adds spacing inside the div */
    display: inline-block; /* Ensures the border wraps around content properly */
}

.divPopupContentExtraWide {
    width: 1000px !important;
}

.divPopupContentExtraExtraWide {
    width: 1200px !important;
}

.fixedHeader {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gradientOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2in;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
    z-index: 1;
}

.divOverlay {
    z-index: 2;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.0);
    color: black;
    padding: 0px;
    border-radius: 5px;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
}

.centerInlayContent {
    position: relative;
    padding: 0px;
    background-color: #f8fbfc;
    color: black;
    margin-top: 0px;
}

.divRightFlex2 {
    flex: 2;
    padding: 20px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.divStdContainerBottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 10px;
} 

.divStdLeftLeft {
    text-align: left;
}

.spnLeft, .spnCenter, .spnRight {
    margin: 0;
    padding: 0;
    display: flex;
}

.spnItemCounter {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

.spnClosePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    color: #333;
}

.divItemCounter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btnItemCounter {
    width: 30px;
    height: 40px;
    font-size: 20px;
}

.bottom {
    align-items: flex-end;
}

.divLRContainer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 0px;
    gap: 30px;
}

.divContainerStretch {
    align-items: stretch;
}

.divLRLeft, .divLRRight {
    flex: 1;
    padding: 5px;
    margin: 0px;
}   

.divLRLeft {
    flex-direction: row;
}

.divLRLeft {
    text-align: left;
}

.divLRRight {
    text-align: right;
}

.divLRLeftFlex2 {
    flex: 2;
    padding: 5px;
    margin: 0px;
}

.divLRLeftFlex3 {
    flex: 3;
    padding: 5px;
    margin: 0px;
}

.divLRRightFlex2 {
    flex: 2;
}

.divPaleStretch {
    background-color: rgb(244, 243, 243);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.divCentered {
    display: block; 
    text-align: center;
}

.divHeaderContainer {
    display: flex;
    align-items: flex-start;
}

.divHeaderLeft, .divHeaderRight {
    margin-right: 10px;
}

.divHeaderRight {
    background-color: rgba(0, 0, 0, 0.0);
}

.divHeaderLeft {
    padding: 10px;
}

.divLogoFrame {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circularFrame {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 4px solid #D4AF37;
    overflow: hidden;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circularFrame img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.overlayText {
    color: white;
    font-weight: 600;
    font-size: 1.2em;
}

.minWidth300 {
    min-width: 300px;
}

.invisibleTable {
    width: 100%;
    border: 0;
    border-collapse: collapse;
    margin-top: 20px;
}

.invisibleTable td {
    padding: 10px;
    vertical-align: middle;
    text-align: left;
}

.btnOauth {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    max-width: 200px;
    padding: 10px;
    margin: 10px 0;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #b9b6b6;
}

.logoOauth {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.btnApple {
    background-color: #000000;
}

.btnGoogle {
    background-color: #ffffff;
    color: #EA4335;
}

.btnFacebook {
    background-color: #1877F2;
}

.lineLight {
    border: none;
    border-top: 1px solid #c4bebe;
    margin: 10px 0;
}

.lineDark {
    border: none;
    border-top: 1px solid #002060;
    margin: 5px 0;
}

.fontBold {
    font-weight: 600;
}

.fontMedium {
    font-weight: 400;
}

.fontSmall {
    font-size: 14px;
}

.leftAligned {
    text-align: left;
}

.centerAligned {
    text-align: center;
}

.frmExtraWide {
    max-width: 1000px !important;
}

.frmExtraExtraWide {
    max-width: 1200px !important;
    width: 1200px !important;
}

.divPackages {
    font-size: 16px;
    font-weight: 500;
    flex: 2;
}

.jsonFormat {
    white-space: pre-wrap; 
    word-wrap: break-word;
}

.stdInputs {
    height: 36px !important;  
    padding: 5px 10px !important; 
    box-sizing: border-box !important;
    margin-bottom: 0px !important;
    vertical-align: middle !important;
}

.stdSpan {
    display: block !important;
    height: 100% !important;
    width: 100% !important;
    padding-left: 23px !important;
    text-align: left !important;
}

.condFormatGood {
    color: #006100; 
    background-color: #C6EFCE
}

.condFormatBad {
    color: #9C0006; 
    background-color: #FFC7CE
}

.condFormatNeutral {
    color: #9C6500; 
    background-color: #FFEB9C
}