/* CSS HEX */
:root {
    --color-light-green: #acf39dff;
    --color-indian-red: #e85f5cff;
    --color-ice-blue: #9cfffaff;
    --color-wine: #773344ff;
    --color-pale-dogwood: #e3b5a4ff;
    --color-light-grey: #f0f0f0;
}

body {
    background-color: var(--color-light-green);
    font-family: Arial, sans-serif;
    color: #333333;
}

h1 {
    color: var(--color-indian-red);
}

h2 {
    color: var(--color-indian-red);
}



/* body {
    background-color: #f2f2f2;
    font-family: Arial, sans-serif;
    color: #333333;
}

h1 {
    color: #ff0000;
}


h2 {
    color: #ff0000;
} */

p {
    font-size: 16px;
    line-height: 1.5;
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15px, 1fr));
    grid-gap: 25px;
    border: 1px solid black; /* This will add a 1px black border */
    padding: 5px; /* This will add some space between the border and the content */
}
.grid label {
    display: grid;
    grid-template-columns: 5fr;
    align-items: center;
    justify-items: start;
    grid-gap: 5px;
    border-bottom: 1px solid black; /* This will add a 1px black border at the bottom of each label */
}

.jumbotron {
    background-color: rgb(7, 7, 14);
    /* color: rgb(52, 70, 173); */
    color: #333333;
    width: 100%;
    /* Enhanced jumbotron layout with grid */
    overflow: hidden;
    word-wrap: break-word;
    padding: 1rem;
}

body {
    /* This will center the content and add padding on large screens */
    @media (min-width: 992px) {
        display: flex;
        justify-content: center;
        padding: 5px;
    }
}

.container {
    /* This will limit the width of the content and center it on large screens */
    @media (min-width: 992px) {
        max-width: 1800px;
        margin: 0 auto;
    }
}

.form-check-input {
    margin-right: 10px;
    border-right: 1px solid black; /* This will add a 1px black border on the right side of each checkbox */
}

form {
    width: 100%; /* Adjust this value as needed */
}

main {
    /* This will add some space between the content and the footer */
    width: 80%;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-wine);
    padding: 10px 30px;
    width: 100%;
}

.navbar a {
    color: var(--color-light-green);
    background-color: var(--color-wine);
    text-decoration: none;
    margin: 0 30px;
    padding: 10px;
    flex-grow: 1;  /* Add this line */
    text-align: center;  /* Add this line if you want the text to be centered */
}

.navbar a:hover {
    color: var(--color-indian-red);
}

div.debug-info {
    background-color: var(--color-ice-blue);
    color: var(--color-wine);
    padding: 20px;
    margin: 20px;
    border: 1px solid var(--color-wine);
}


.phone-symbol {
    font-size: 40px;
    color: var(--color-indian-red);
    /* Enhanced phone symbol styling */
    display: block;
    text-align: center;
    margin: 0.5rem 0;
    padding: 0.25rem;
    /* Ensure the symbol doesn't overflow its container */
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.jumbotron.grid label {
    white-space: nowrap;
}

table {
    border-collapse: collapse;
}

.column-border {
    border-right: 1px solid #ddd;
}
.column-border:last-child {
    border-right: none; /* Remove border for the last column */
}

input.checkbox-orange {
    background-color: orange;
}

option.blue {
    background-color: rgb(100, 100, 221);
    color: white;
}
option.white {
    background-color: white;
    color: black;
}
option.orange {
    background-color: rgb(236, 167, 38);
    color: black;
}
button.orange {
    background-color: rgb(236, 167, 38);
    color: black;
}
button.blue {
    background-color: rgb(100, 100, 221);
    color: white;
}

@media (max-width: 1200px) {
    .jumbotron .col-lg-4 {
        min-width: 300px;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .jumbotron .col-lg-4 {
        min-width: 100%;
        max-width: 100%;
    }
    
    .phone-symbol {
        font-size: 24px;
    }
}

select[id^="id_phone_"] {
    max-width: 100%;
    width: 100% !important;
    box-sizing: border-box;
    overflow: visible;
}

.form-group {
    max-width: none;
    overflow: visible;
}

.jumbotron .row {
    margin: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    align-items: start;
}

.jumbotron .col-lg-4 {
    padding: 0.5rem;
    min-width: 350px;
    max-width: 500px;
    overflow: visible;
    position: relative;
    transform: translateZ(0);
}

.controls {
    width: 100%;
    overflow: visible;
}

.phone-graph-select {
    overflow: visible;
}
