html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.page-container {
    padding: 20px;
    min-height: 100vh;
}

.content-container {
    max-width: 600px;
    margin: auto;
    background: rgba(26, 26, 26, 0.95);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 255, 204, 0.3);
    color: #fff;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-size: cover;
    margin-bottom: 60px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background: url('/images/backgrounds/siteBackground.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
    color: #333;
}

.navbar-brand {
    color: white;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.navbar-toggler {
    border: 1px solid #fff;
}

.navbar-toggler-icon {
    color: #fff;
}

.navbar-image {
    height: 3.5rem;
    margin-right: 10px;
    vertical-align: middle;
}

#navi-helper {
    position: fixed;
    bottom: 20px;
    right: 20px;
}

#navi-button {
    background-image: url('/images/GuidedLegacyFlame.png');
    background-size: cover; /* Ensures the image covers the button area */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center; /* Centers the image within the button */
    width: 50px; /* Set the desired width for the button */
    height: 50px; /* Set the desired height for the button */
    border: none; /* Removes border around the button */
    border-radius: 50%; /* Makes the button circular */
    cursor: pointer; /* Changes cursor to pointer on hover */
    display: block; /* Ensures the button is treated as a block element */
    text-indent: -9999px; /* Hides the text visually but keeps it accessible for screen readers */
    overflow: hidden; /* Ensures any overflow content is hidden */
    outline: none; /* Removes the default focus outline */
    background-color: black;
}

/*#navi-topics li {
    color: white !important;
    font-size: 16px;
    visibility: visible !important;
    opacity: 1 !important;
}*/

.hideMe {
    display:none;
}

#navi-panel {
    display:none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 275px;
    background: rgba(62, 40, 25, 0.95);
    border: 1px solid #815739;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

#navi-button:hover {
    opacity: 0.8; /* Slightly dims the button on hover */
}

#navi-description {
    display: none;
}

#navi-topics {
    list-style-type: none; /* Remove bullets */
    padding: 0;
    margin: 0;
}

    #navi-topics li {
        color: white !important; /* Ensures the text is white */
        font-size: 18px !important; /* Ensures the text is readable */
        margin: 5px 0; /* Adds spacing between items */
        cursor: pointer; /* Makes the items clickable */
        visibility: visible !important; /* Ensure items are visible */
        opacity: 1 !important; /* Ensure items are fully visible */
    }

        #navi-topics li:hover {
            text-decoration: underline; /* Add a hover effect for better UX */
        }

#navi-panel h2, #navi-panel p {
    color: white; /* Ensure headings and text are visible */
}

/* Style for the close button */
.close-button {
    position: absolute; /* Position it relative to the panel */
    top: 0px; /* Adjust spacing from the top */
    right: 3px; /* Adjust spacing from the right */
    background: none; /* Remove default background */
    border: none; /* Remove border */
    color: red; /* Make the "X" red */
    font-size: 24px; /* Increase font size for visibility */
    font-weight: bold; /* Make it bold */
    cursor: pointer; /* Change cursor to pointer on hover */
}

    /* Hover effect for close button */
    .close-button:hover {
        color: darkred; /* Darker red on hover */
    }

/* Flashing effect for Navi button */
@keyframes flash {
    0%, 100% {
        box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow: 0px 0px 20px rgba(255, 255, 255, 1);
    }
}

.flash {
    animation: flash 1s infinite;
}

.marginBottomMid {
    margin-bottom: 20px;
}

.makeItBlue {
    color: #2F7199;
}

.deleteButton {
    background-color: #ff4d4d;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
}

.cancelButton {
    background-color: #00ccff;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    margin-left: 10px;
}


.formStyle {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

#submitBtn {
    background-color: #00cc66;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
}

#cancelButton {
    background-color: #ff00cc;
    border: none;
    padding: 10px 20px;
    font-size: 1.1rem;
    margin-left: 10px;
}

.accountHeader {
    color: ghostwhite;
    text-shadow: 0 0 10px #2F7199;
    margin-bottom: -5px;
}

.info-icon {
    cursor: pointer;
    color: #2F7199;
    margin-left: 5px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.info-popup {
    display: none;
    position: absolute;
    background: rgba(26, 26, 26, 0.95);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 8px 16px rgba(0, 255, 204, 0.3);
    font-size: 0.9rem;
    width: 300px;
    z-index: 1000;
}

.info-container {
    position: relative;
    display: inline-block;
}

    .info-container:hover .info-popup,
    .info-container:focus-within .info-popup {
        display: block;
    }

@media (max-width: 480px) {
    .info-popup {
        width: 120px;
    }
}

.standardTable {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 255, 204, 0.2);
}

.standardTableHead {
    background-color: #2F7199;
    color: black;
}

.rowStyle {
    height: 50px;
}

.rowHeaderStyle {
    padding: 10px 20px;
    text-align: left;
    color:white;
}

.anotherRowStyle {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: ghostwhite;
}

.aLittleSpcing {
    padding: 15px 20px;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.makeItGrey {
    color: #666;
}

.scenarioDiv {
    margin-top: 10px;
    margin-bottom: 20px;
}

.uploadTaxButton {
    background-color: #ff00cc;
    border: none;
    float: right;
    padding: 5px 10px;
    font-size: 1.1rem;
    margin-left: 10px;
}

.editSalesPerson {
    background-color: #ff00cc;
    border: none;
    float: right;
    padding: 5px 10px;
    font-size: 1.1rem;
    margin-left: 10px;
}

.sales-scenarios, .sales-objections {
    font-family: 'Roboto', sans-serif;
    color: #f0f0f0;
    background-color: #121212;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

    .sales-scenarios h2, .sales-objections h2 {
        color: #00e5ff;
        margin-bottom: 20px;
    }

.accordion-button {
    background-color: #1e1e1e;
    color: #f0f0f0;
    border: none;
    font-size: 1.2rem;
    transition: background-color 0.3s;
}

    .accordion-button:hover {
        background-color: #333;
    }

    .accordion-button:not(.collapsed) {
        color: #00e5ff;
        background-color: #292929;
        border-bottom: 1px solid #00e5ff;
    }

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.accordion-body {
    background-color: #1e1e1e;
    color: #f0f0f0;
    padding: 20px;
    border-radius: 8px;
}

