/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #009ebd;
    color: #333;
}

        /* Custom Alert Styling */
#custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000;
}

.alert-content {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 350px;
    width: 100%;
}

#alert-message {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}

#alert-ok-button {
    background-color: #0073b1;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#alert-ok-button:hover {
    background-color: #005f8d;
}
/* General responsiveness for the body */
@media screen and (max-width: 768px) {
    body {
        font-size: 14px; /* Reduce font size for smaller screens */
        padding: 0; /* Maintain zero padding */
        background-color: #009ebd; /* Ensure consistent background color */
        color: #333; /* Retain readable text color */
    }
}

/* Custom Alert Responsiveness */
@media screen and (max-width: 768px) {
    #custom-alert {
        justify-content: center;
        align-items: center;
    }

    .alert-content {
        padding: 1rem; /* Reduce padding for compact layout */
        border-radius: 6px; /* Adjust radius for smaller screens */
        max-width: 300px; /* Reduce max width */
    }

    #alert-message {
        font-size: 0.9rem; /* Slightly reduce font size for alert message */
    }

    #alert-ok-button {
        padding: 0.4rem 0.8rem; /* Adjust button padding */
        font-size: 0.9rem; /* Reduce font size for the button */
    }
}

/* Very Small Screens */
@media screen and (max-width: 480px) {
    .alert-content {
        padding: 0.8rem; /* Further reduce padding */
        max-width: 250px; /* Further reduce max width */
    }

    #alert-message {
        font-size: 0.8rem; /* Further reduce font size */
    }

    #alert-ok-button {
        padding: 0.3rem 0.6rem; /* Further adjust button padding */
        font-size: 0.8rem; /* Further reduce font size */
    }
}



.toggle-password {
    cursor: pointer;
    color: #0073b1;
    margin-left: 10px;
    font-size: 0.9em;
}

.toggle-password:hover {
    text-decoration: underline;
}
/* Styles for Phone Container */
.phone-container {
    display: flex;
    gap: 5px;
}

.phone-container select {
    width: 20%;
}

.phone-container input {
    width: 80%;
}

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .toggle-password {
        font-size: 0.8em; /* Reduce font size for better proportion */
        margin-left: 5px; /* Reduce margin to keep alignment compact */
    }

    .phone-container {
        flex-direction: column; /* Stack elements vertically */
        gap: 10px; /* Increase gap for better spacing in vertical layout */
    }

    .phone-container select,
    .phone-container input {
        width: 100%; /* Full width for both elements */
    }
}

/* Responsive adjustments for very small screens */
@media screen and (max-width: 480px) {
    .toggle-password {
        font-size: 0.75em; /* Further reduce font size */
        margin-left: 3px; /* Further reduce margin */
    }

    .phone-container {
        gap: 5px; /* Compact spacing for very small screens */
    }

    .phone-container select,
    .phone-container input {
        width: 100%; /* Maintain full width */
    }
}

/* Combined Menu and Logo Section */
#header-section {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}


/* Top Menu Bar */
.top-menu {
    display: flex;
    justify-content: flex-start;
    background-color: #F58E49;
    padding: 7.5px 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 15px;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 5px 8px;
    display: block;
    font-size: 0.85em;
}

nav ul li .dropdown-content {
    display: none;
    position: absolute;
    padding: 7.5px 0px 0px 0px;
    background-color: #F58E49;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
}

nav ul li .dropdown-content a {
    color: white;
    padding: 9px 12px;
    text-decoration: none;
    display: block;
    white-space: nowrap;
    font-size: 0.75em;
}

nav ul li .dropdown-content a:hover {
    background-color: #ffffff;
    color: #F58E49;
}

nav ul li:hover .dropdown-content {
    display: block;
}
/* Shrink navigation width for smaller screens */
@media screen and (max-width: 768px) {
    .top-menu {
        justify-content: space-between; /* Adjust spacing for compact layout */
        padding: 5px 10px; /* Reduce padding */
    }

    nav ul {
        flex-wrap: nowrap; /* Ensure links stay in a single row */
        overflow-x: auto; /* Allow horizontal scrolling if needed */
    }

    nav ul li {
        margin-right: 10px; /* Adjust spacing between links */
    }

    nav ul li a {
        font-size: 0.8em; /* Reduce font size for smaller screens */
        padding: 4px 6px; /* Adjust link padding */
    }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
    .top-menu {
        padding: 12px; /* Further reduce padding */
    }

    nav ul li {
        margin-right: 5px; /* Compact spacing for very small screens */
    }

    nav ul li a {
        font-size: .9em; /* Further reduce font size */
        padding: 3px 5px; /* Compact link padding */
    }
}

/* Logo Section */
#logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	order-bottom: 1px solid #ccc; /* Light grey line */
}
#logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #ccc; /* Light grey line */
}


#logo {
    height: 60px;
}

/* Welcome Section */
#welcome-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #009EBD;
    color: white;
    margin-top: 140px;
}

#welcome-section h1 {
    font-size: 2.5em;
}

#welcome-section p {
    font-size: 1.2em;
    margin: 20px 0;
}

#get-started-button {
    background-color: #F58E49;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    #logo-section {
        padding: 15px; /* Reduce padding for compact layout */
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    }

    #logo {
        height: 50px; /* Reduce logo size */
    }

    #welcome-section {
        padding: 30px 15px; /* Reduce padding for better fit */
        margin-top: 100px; /* Adjust margin for smaller screens */
    }

    #welcome-section h1 {
        font-size: 2em; /* Reduce heading size */
    }

    #welcome-section p {
        font-size: 1em; /* Adjust paragraph font size */
        margin: 15px 0; /* Reduce spacing */
    }

    #get-started-button {
        font-size: 0.9em; /* Adjust button text size */
        padding: 8px 16px; /* Adjust button padding */
    }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
    #logo-section {
        padding: 10px; /* Further reduce padding */
    }

    #logo {
        height: 50px; /* Further reduce logo size */
    }

    #welcome-section {
        padding: 20px 10px; /* Reduce padding for very small screens */
        margin-top: 80px; /* Further adjust margin */
    }

    #welcome-section h1 {
        font-size: 1.8em; /* Further reduce heading size */
    }

    #welcome-section p {
        font-size: 0.9em; /* Further adjust paragraph size */
        margin: 10px 0; /* Reduce spacing further */
    }

    #get-started-button {
        font-size: 0.8em; /* Further reduce button text size */
        padding: 6px 12px; /* Adjust button padding further */
    }
}


/* Job Helper Wrapper Section */
#job-helper-wrapper {
    background-color: #009EBD;
    padding: 20px 0;
}

/* Job Helper Section */
#job-helper-section {
    padding: 10px;
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.helper-box {
    background-color: #009EBD;
    border-radius: 8px;
    padding: 20px;
}

#job-helper-section h1 {
    text-align: center;
    color: white;
}

#input-container {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 8px;
    background-color: white;
    display: flex;
    flex-direction: column;
}

#input-container textarea {
    width: calc(100% - 22px);
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    font-family: Arial, sans-serif;
    height: 80px;
    resize: none;
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: #ccc #fff;
}

#input-container textarea::-webkit-scrollbar {
    width: 12px;
}

#input-container textarea::-webkit-scrollbar-track {
    background: #fff;
}

#input-container textarea::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 10px;
    border: 3px solid #fff;
}

#input-container input[type="text"] {
    width: calc(100% - 22px);
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

#analyze-button {
    background-color: #F58E49;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    width: calc(100% - 2px);
}

/* Loading Spinner */
#loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    #job-helper-wrapper {
        padding: 10px 0; /* Reduce padding for compact layout */
    }

    #job-helper-section {
        padding: 10px; /* Retain padding for content spacing */
        max-width: 90%; /* Reduce width to fit smaller screens */
        margin: 0 auto; /* Center-align section */
    }

    .helper-box {
        padding: 15px; /* Reduce padding for smaller screens */
        border-radius: 6px; /* Adjust border radius */
    }

    #job-helper-section h1 {
        font-size: 1.5em; /* Reduce heading font size */
        margin-bottom: 15px; /* Add spacing below heading */
    }

    #input-container {
        padding: 15px; /* Reduce padding */
        border-radius: 6px; /* Adjust border radius */
    }

    #input-container textarea, 
    #input-container input[type="text"] {
        font-size: 0.9em; /* Reduce font size */
        padding: 8px; /* Adjust input padding */
        height: auto; /* Allow flexible height for smaller screens */
    }

    #analyze-button {
        font-size: 0.9em; /* Reduce button font size */
        padding: 8px 16px; /* Adjust button padding */
        margin-top: 10px; /* Maintain spacing */
    }
}

/* Responsive adjustments for very small screens */
@media screen and (max-width: 480px) {
    #job-helper-wrapper {
        padding: 5px 0; /* Further reduce padding */
    }

    #job-helper-section {
        padding: 8px; /* Reduce padding */
        max-width: 95%; /* Increase width flexibility */
    }

    .helper-box {
        padding: 10px; /* Further reduce padding */
    }

    #job-helper-section h1 {
        font-size: 1.2em; /* Further reduce heading size */
        margin-bottom: 10px; /* Adjust spacing */
    }

    #input-container {
        padding: 10px; /* Reduce padding for compactness */
        font-size: 0.8em; /* Adjust font size */
    }

    #input-container textarea, 
    #input-container input[type="text"] {
        padding: 6px; /* Further reduce padding */
        font-size: 0.8em; /* Adjust font size for readability */
    }

    #analyze-button {
        font-size: 0.8em; /* Further reduce button font size */
        padding: 6px 12px; /* Adjust padding */
    }
}

#loading-spinner .throbber {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 8px solid #ccc;
    border-top-color: #F58E49;
    animation: spin 1s linear infinite;
}

#loading-spinner div {
    font-size: 2em;
    color: #F58E49;
    font-weight: 500;
    margin-top: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    #loading-spinner .throbber {
        width: 75px; /* Reduce size of the spinner */
        height: 75px; /* Match reduced width */
        border: 6px solid #ccc; /* Adjust border thickness */
        border-top-color: #F58E49; /* Retain the spinner color */
    }

    #loading-spinner div {
        font-size: 1.5em; /* Reduce font size of the text */
        margin-top: 8px; /* Adjust spacing between spinner and text */
    }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
    #loading-spinner .throbber {
        width: 50px; /* Further reduce size of the spinner */
        height: 50px; /* Match reduced width */
        border: 4px solid #ccc; /* Further adjust border thickness */
        border-top-color: #F58E49; /* Retain the spinner color */
    }

    #loading-spinner div {
        font-size: 1.2em; /* Further reduce font size of the text */
        margin-top: 6px; /* Reduce spacing between spinner and text */
    }
}
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    #output-container {
        display: block; /* Ensure output container is visible if needed */
    }

    .output-box {
        padding: 15px; /* Reduce padding for smaller screens */
        border-radius: 6px; /* Adjust border radius for compactness */
        margin-top: 15px; /* Reduce top margin */
        font-size: 0.9em; /* Adjust font size for readability */
    }

    .two-column-list {
        columns: 1; /* Switch to a single column layout */
        list-style-type: none; /* Retain no bullet points */
        padding: 0; /* Maintain compact layout */
    }

    .footer {
        font-size: 0.9em; /* Adjust footer font size */
        margin-top: 15px; /* Reduce top margin */
    }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
    .output-box {
        padding: 10px; /* Further reduce padding */
        border-radius: 4px; /* Further adjust border radius */
        font-size: 0.8em; /* Further adjust font size */
        margin-top: 10px; /* Compact top margin */
    }

    .two-column-list {
        columns: 1; /* Maintain single-column layout */
        font-size: 0.8em; /* Adjust font size for list items */
    }

    .footer {
        font-size: 0.8em; /* Further reduce footer font size */
        margin-top: 10px; /* Compact top margin */
    }
}

/* Page Specific Sections */
.page-section {
    padding: 35px 20px;
    margin-top: 120px;
    background-color: #ffffff;
}

.page-section h1 {
    text-align: center;
    color: #009EBD;
}

.page-section p {
    text-align: center;
    color: #f58e49;
}

.page-section .form-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #ffffff;
}

.page-section .form-container input,
.page-section .form-container select {
   /* width: calc(100% - 22px);*/
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

.page-section .form-container button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #F58E49;
    color: white;
    font-size: 1em;
    cursor: pointer;
}
.confirmation-logo {
    width: 175px;
    height: auto;
    display: block;
    margin: 0 auto;
}
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    .page-section {
        padding: 20px 10px; /* Reduce padding for smaller screens */
        margin-top: 80px; /* Adjust top margin for compact spacing */
    }

    .page-section h1 {
        font-size: 1.8em; /* Reduce heading font size */
        margin-bottom: 15px; /* Add spacing below the heading */
    }

    .page-section p {
        font-size: 1em; /* Adjust paragraph font size */
        margin-bottom: 10px; /* Add spacing below paragraphs */
    }

    .page-section .form-container {
        max-width: 300px; /* Reduce max width for smaller screens */
        padding: 15px; /* Adjust form padding */
        border-radius: 6px; /* Adjust border radius */
        margin-top: 30px;
    }

    .page-section .form-container input,
    .page-section .form-container select {
        font-size: 0.9em; /* Reduce input and select font size */
        padding: 8px; /* Adjust padding for inputs */
    }

    .page-section .form-container button {
        font-size: 0.9em; /* Adjust button font size */
        padding: 8px; /* Adjust button padding */
    }

    .confirmation-logo {
        width: 125px; /* Reduce logo size */
        margin-bottom: 15px; /* Add spacing below the logo */
    }
}


/* Styles for Password Toggle Icons */
.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 24px;
    height: 24px;
}

/* Password Requirements Styling */
#password-requirements {
    color: black;
    display: block;
    font-size: 0.65em;
    margin-bottom: 2px ;
}
#password-requirements ul {
    columns: 2;
    list-style-type: none;
    padding: 0;
}

/* Styles for Phone Container */
.phone-container {
    display: flex;
    gap: 5px;
}

.phone-container select {
    width: 30%;
}

.phone-container input {
    width: 70%;
}

/* Split Container */
.split-container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.left-section, .right-section {
    width: 48%;
}

.left-section {
    background-color: #f2f2f2;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.left-section h2 {
    color: #009EBD;
}

.left-section ul {
    list-style: none;
    padding: 0;
}

.left-section ul li {
    margin-bottom: 10px;
}

.right-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.center-button {
    display: block;
    margin: 0 auto;
    padding: 10px 20px;
    background-color: #F58E49;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}
.form-container {
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            background-color: #ffffff;
            text-align: center;
        }

        .form-container h1 {
            font-size: 1.5rem;
            color: #009ebd;
            margin-bottom: 1rem;
        }

        .form-container input {
            width: 100%;
            padding: 0.75rem;
            margin: 0.5rem 0;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-container button {
            width: 100%;
            padding: 0.75rem;
            margin-top: 1rem;
			
            background-color: #0073b1;
            border: none;
            border-radius: 4px;
            color: #ffffff;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-container button:hover {
            background-color: #009ebd;
        }

.page-section .form-container-personal-info {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
 
}
.form-container-personal-info {
            width: 100%;
            max-width: 400px;
            margin: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            background-color: #ffffff;
            text-align: left;
	font-weight: bold;
        }

        .form-container-personal-info h1 {
            font-size: 1.5rem;
            color: #009ebd;
            margin-bottom: 1rem;
        }

        .form-container-personal-info input {
            width: 100%;
            padding: 0.75rem;
            margin: 0.5rem 0;
            border: 1px solid #ddd;
            border-radius: 4px;
            box-sizing: border-box;
        }

        .form-container-personal-info button {
            width: 100%;
            padding: 0.75rem;
            margin-top: 1rem;
			margin-bottom: 1rem;
            background-color: #F58E49;
            border: none;
            border-radius: 4px;
            color: #ffffff;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .form-container-personal-info button:hover {
            background-color: #009ebd;
        }
        .password-container {
            position: relative;
        }

        .password-container .toggle-password {
            position: absolute;
            top: 50%;
            right: 30px;
            transform: translateY(-50%);
            cursor: pointer;
        }

        .hidden {
            display: none;
        }

.hidden {
    display: none;
/* Responsive adjustments for smaller screens */
@media screen and (max-width: 768px) {
    #password-requirements {
        font-size: 0.6em; /* Slightly reduce font size */
        margin-bottom: 5px; /* Adjust spacing */
    }

    #password-requirements ul {
        columns: 1; /* Change to single-column layout */
    }

    .phone-container {
        flex-direction: column; /* Stack select and input vertically */
        gap: 10px; /* Increase spacing between elements */
    }

    .phone-container select,
    .phone-container input {
        width: 100%; /* Full width for both elements */
    }

    .split-container {
        flex-direction: column; /* Stack sections vertically */
        margin-top: 15px; /* Adjust spacing above */
    }

    .left-section,
    .right-section {
        width: 100%; /* Full width for stacked layout */
        margin-bottom: 15px; /* Add spacing between sections */
    }

    .left-section h2 {
        font-size: 1.2rem; /* Adjust heading size */
    }

    .center-button {
        padding: 8px 16px; /* Adjust padding for compact layout */
        font-size: 0.9em; /* Reduce button font size */
    }

    .form-container {
        max-width: 300px; /* Reduce maximum width for smaller screens */
        padding: 1.5rem; /* Adjust padding */
    }

    .form-container h1 {
        font-size: 1.2rem; /* Reduce heading font size */
    }

    .form-container input,
    .form-container button {
        font-size: 0.9rem; /* Reduce font size */
        padding: 8px; /* Adjust padding */
    }

    .form-container-personal-info {
        max-width: 300px; /* Adjust max width */
        padding: 1.5rem; /* Adjust padding */
    }

    .form-container-personal-info h1 {
        font-size: 1.2rem; /* Reduce heading font size */
    }

    .form-container-personal-info input,
    .form-container-personal-info button {
        font-size: 0.9rem; /* Reduce font size */
        padding: 8px; /* Adjust padding */
    }

    .password-container .toggle-password {
        right: 20px; /* Adjust position for smaller input width */
    }
}

/* Further adjustments for very small screens */
@media screen and (max-width: 480px) {
    #password-requirements {
        font-size: 0.5em; /* Further reduce font size */
    }

    .phone-container {
        gap: 5px; /* Compact spacing */
    }

    .split-container {
        margin-top: 10px; /* Further reduce spacing above */
    }

    .center-button {
        font-size: 0.8em; /* Further reduce button font size */
        padding: 6px 12px; /* Compact padding */
    }

    .form-container,
    .form-container-personal-info {
        max-width: 250px; /* Further reduce max width */
        padding: 1rem; /* Compact padding */
    }

    .form-container h1,
    .form-container-personal-info h1 {
        font-size: 1rem; /* Further reduce heading font size */
    }

    .form-container input,
    .form-container button,
    .form-container-personal-info input,
    .form-container-personal-info button {
        font-size: 0.8rem; /* Further reduce font size */
        padding: 6px; /* Compact padding */
    }

    .password-container .toggle-password {
        right: 15px; /* Further adjust position for smaller inputs */
    }
} 
