* {
    font-family: 'Roboto', Arial, sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.custom-navbar {
    background-color: #3F51B5;
    color: #ffffff;
}

.custom-navbar a {
    color: #000000 !important;
}

.no-arrow::after {
    display: none;
}

.dropdown {
    position: relative;
}

.oval {
    display: inline-block;
    padding: 10px 20px;
    /* Adjust as needed */
    background-color: gray;
    border-radius: 50px;
    /* This creates the oval shape */
    color: white;
    /* Adjust the text color as needed */
}

.jsonform-container .form-group {
    margin-bottom: 10px;
    /* Adjust this value as needed */
}

.jsonform-required>label:after {
    content: ' *';
    color: red;
}

.jsonform-hasrequired:after {
    content: '* Required field';
    display: block;
    color: red;
    padding-top: 1em;
}

/* Hide the default radio button */
.jsonform-type-radiobuttons input[type='radio'] {
    content: '';
    display: inline-block !important;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    border-radius: 50%;
    background-color: #000 !important;
    border: 2px solid #999 !important;
}

/* Create a custom radio button */
.jsonform-type-radiobuttons input[type='radio']+label:before {
    content: '';
    display: inline-block !important;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: relative;
    border-radius: 50%;
    background-color: #000 !important;
    border: 2px solid #999 !important;
}

/* Style the custom radio button when checked */
.jsonform-type-radiobuttons input[type='radio']:checked+label:before {
    background-color: #999 !important;
}

.jsonform-type-select select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Position it at the bottom of the dropdown container */
    left: 0;
    /* Align it to the left of the dropdown container */
}

.navbar-nav .dropdown {
    position: relative;
}

.navbar-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    /* Position it at the bottom of the dropdown container */
    left: 0;
    /* Align it to the left of the dropdown container */
}

.dropdown-item {
    font-size: 0.875rem;
}

.custom-dropdown-item .material-icons {
    font-size: 0.875rem;
}

/* Military Auto */
#uiDataForm {
    font-size: 12px; /* Adjust the font size as needed */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

table, th, td {

    border-collapse: collapse;
    padding: 1px;
    border: 10px solid transparent;

  }
  .tr_head {
    background-color:black; color:yellow;
    height: 25px;    
  }
  .tr_blue {
    border-collapse: collapse;
    background-color:lightblue; color:black;
    border-style: none;
  }
  .tr_gray {
    border-collapse: collapse;
    background-color:rgb(226, 215, 215); color:black;
  }
  .tr_green {
    border-collapse: collapse;
    background-color:lightgreen; color:black;
  }

  .td_head {
    column-span: 8;
    text-align: center;
  }
  
  .td_reg {
    border-style: none;
    border-collapse: collapse;

  }
  
  .td_prem_head {
    font-weight: bold;
    color: darkblue;
    text-align: center;

  }

  .td_prem {
    text-align: right;
  }



:host {
    --bright-blue: oklch(51.01% 0.274 263.83);
    --electric-violet: oklch(53.18% 0.28 296.97);
    --french-violet: oklch(47.66% 0.246 305.88);
    --vivid-pink: oklch(69.02% 0.277 332.77);
    --hot-red: oklch(61.42% 0.238 15.34);
    --orange-red: oklch(63.32% 0.24 31.68);

    --gray-900: oklch(19.37% 0.006 300.98);
    --gray-700: oklch(36.98% 0.014 302.71);
    --gray-400: oklch(70.9% 0.015 304.04);

    --red-to-pink-to-purple-vertical-gradient: linear-gradient(180deg,
            var(--orange-red) 0%,
            var(--vivid-pink) 50%,
            var(--electric-violet) 100%);

    --red-to-pink-to-purple-horizontal-gradient: linear-gradient(90deg,
            var(--orange-red) 0%,
            var(--vivid-pink) 50%,
            var(--electric-violet) 100%);

    --pill-accent: var(--bright-blue);

    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 2rem;
    color: var(--gray-900);
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.125rem;
    margin: 0;
    font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
        "Segoe UI Symbol";
}

p {
    margin: 0;
    color: var(--gray-700);
}

main {
    width: 100%;
    min-height: 50%;
    display: flex;
    justify-content: center;

    padding: 1rem;
    box-sizing: inherit;
    position: relative;
}

.angular-logo {
    max-width: 9.2rem;
}

.content {
    display: flex;
    justify-content: space-around;
    width: 100%;
    max-width: 700px;
    margin-bottom: 3rem;
}

.content h1 {
    margin-top: 1.75rem;
}

.content p {
    margin-top: 1.5rem;
}

.divider {
    height: 100%;
    width: 1px;
    background: linear-gradient(to bottom, red, orange, yellow, green, blue, indigo, violet);
    margin-inline: 0.5rem;
}

.pill-group {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.pill {
    display: flex;
    align-items: center;
    --pill-accent: var(--bright-blue);
    background: color-mix(in srgb, var(--pill-accent) 5%, transparent);
    color: var(--pill-accent);
    padding-inline: 0.75rem;
    padding-block: 0.375rem;
    border-radius: 2.75rem;
    border: 0;
    transition: background 0.3s ease;
    font-family: var(--inter-font);
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.4rem;
    letter-spacing: -0.00875rem;
    text-decoration: none;
}

.pill:hover {
    background: color-mix(in srgb, var(--pill-accent) 15%, transparent);
}

.pill-group .pill:nth-child(6n + 1) {
    --pill-accent: var(--bright-blue);
}

.pill-group .pill:nth-child(6n + 2) {
    --pill-accent: var(--french-violet);
}

.pill-group .pill:nth-child(6n + 3),
.pill-group .pill:nth-child(6n + 4),
.pill-group .pill:nth-child(6n + 5) {
    --pill-accent: var(--hot-red);
}

.pill-group svg {
    margin-inline-start: 0.25rem;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* This makes the div take up the full height of the viewport */
}

.social-links path {
    transition: fill 0.3s ease;
    fill: var(--gray-400);
}

.social-links a:hover svg path {
    fill: var(--gray-900);
}

@media screen and (max-width: 650px) {
    .content {
        flex-direction: column;
        width: max-content;
    }

    .divider {
        height: 1px;
        width: 100%;
        background: var(--red-to-pink-to-purple-horizontal-gradient);
        margin-block: 1.5rem;
    }
}


/* You can add global styles to this file, and also import other style files */
* {
    font-family: 'Roboto', Arial, sans-serif;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Roboto, "Helvetica Neue", sans-serif;
}

.JFbutton {
    /* Add your styles here */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background-color: #FF4081;
    border: none;
    padding: 4px 12px;
    /* Reduced padding */
    font-size: 0.75rem;
    /* Reduced font size */
    line-height: 1.5;
    /* Reduced line height */
    border-radius: 4px;
    transition: background-color 0.3s;
}

.JFbuttonPrimary {
    /* Add your styles here */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background-color: #3f51b5;
    border: none;
    padding: 4px 12px;
    /* Reduced padding */
    font-size: 0.75rem;
    /* Reduced font size */
    line-height: 1.5;
    /* Reduced line height */
    border-radius: 4px;
    transition: background-color 0.3s;
}

.JFbuttonSecondary {
    /* Add your styles here */
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background-color: #b53f66;
    border: none;
    padding: 4px 12px;
    /* Reduced padding */
    font-size: 0.75rem;
    /* Reduced font size */
    line-height: 1.5;
    /* Reduced line height */
    border-radius: 4px;
    transition: background-color 0.3s;
}


.JFbutton:hover {
    color: #fff;
    background-color: #9f303f;
}

.JFinputData {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 10px;
    /* Adjust this value as needed */

}

.JFinputData input {
    font-size: 0.875rem;
    margin-left: 15em;
    line-height: 1.9;
    height: 30px;
    width: 40%;
}

.JFinputData label {
    font-size: 0.875rem;
    position: absolute;
    line-height: 2;
}

.JFinputData hr {
    margin: 0;
    /* Remove margin */
    width: 70%;
}

.JFinputData select {
    font-size: 0.75rem;
    line-height: 2.1;
    margin-left: 23em;
    width: 25%;
    height: 30px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
    padding-top: 0;
}


.JFradioData {
    font-size: 0.875rem;
    background-color: white;
    line-height: 2;
    margin-right: 5px;

    label {
        margin-right: 10px;

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

.JFradioData input {
    font-size: 0.875rem;
    line-height: 2;
    margin-left: 2em;
}


.JFdatetData {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 10px;
    /* Adjust this value as needed */
}

.JFdateData input {
    font-size: 0.875rem;
    margin-left: 20em;
    line-height: 1.9;
    width: 15%;
    height: 30px;
    margin-bottom: 10px;
    /* Adjust this value as needed */
}

.JFdateData label {
    font-size: 0.875rem;
    position: absolute;
    line-height: 2;
    margin-bottom: 10px;
    /* Adjust this value as needed */
}

.qr-link {
    display: block;
    margin-top: 20px;
    /* Adjust this value as needed */
}


strong {
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 2;
}

.quoteForm {
    display: flex;
    flex-direction: column;
    align-items: start;
    flex-wrap: wrap;
    gap: 1.25rem;
}


.display-flex {
    display: flex;

}

.flex-1 {
    flex: 1;
    font-size: 0.875rem;
    line-height: 1.9;

}

.flex-1 label {
    font-size: 0.875rem;
    position: absolute;
    line-height: 2;

}

.flex-1 input {
    font-size: 0.875rem;
    margin-left: 16em;
    line-height: 1.9;

}

.flex-2 {
    flex: 2;

}

.flex-3 {
    flex: 3;

}

.flex-4 {
    flex: 4;

}

.flex-5 {
    flex: 5;

}

.flex-6 {
    flex: 6;

}

[class*='flex-'] {
    padding-left: 10px;
    padding-right: 10px;
}

[class*='flex-']:first-child {
    padding-left: 0;

}

[class*='flex-']:nth-last-child(2) {
    padding-right: 0;

}

.uw-box {
    display: flex;
    justify-content: space-between; /* Distributes elements evenly */
    align-items: center; /* Aligns items vertically */
    border: 2px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    background: #f8f9fa;
    margin-bottom: 10px;
}
.uw-item {
    flex: 1; /* Allows equal spacing */
    margin-right: 20px; /* Adds spacing between status & message */
}
.uw-item:last-child {
    margin-right: 0; /* Prevents extra margin on the last item */
}
.uw-status {
    font-weight: bold;
    color: #007bff;
}
.uw-message {
    font-style: italic;
    color: #333;
}