/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Navigation Links */
.nav-links {
    text-align: center;
    display: row;
    padding: 10px 0;
    background-color: white;
}

.nav-links a {
    font-size: 22px;  /* Bigger Font */
    font-weight: bold;
    color: blue;  /* Blue Text */
    text-decoration: none;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: color 0.3s ease, background 0.3s ease;
}

.nav-links a:hover {
    background: #d3e3ff;  /* Light Blue Background on Hover */
    color: darkblue;
}

/* Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
}

.logo-container img {
    width: 100px;  /* Adjust size */
    height: auto;
}

/* Bio-Data Form Styling */
.form-container {
    width: 70%;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

h2 {
    text-align: center;
    color: #2c3e50;
}

form {
    display: flex;
    flex-wrap: wrap; /* Allows better arrangement */
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 20px); /* Makes sure elements adjust properly */
    min-width: 250px;
}

label {
    display: block;
    margin-top: 12px;
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
}

input, select {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

button {
    margin-top: 15px;
    background: #007bff; /* Blue */
    font-size: 18px;
    font-weight: bold;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #0056b3;
}

.employer-container {
    display: flex; /* Enables horizontal alignment */
    justify-content: center; /* Centers logos */
    gap: 10px; /* Adds spacing between logos */
    margin-top: 10px;
}

.employer-container label {
    cursor: pointer; /* Makes it clear that these are clickable */
}

.employer-container img {
    border: 2px solid transparent; /* Default border */
    border-radius: 8px; /* Slight rounding for better design */
    transition: border 0.3s ease, transform 0.2s ease;
}

.employer-container label input:checked + img {
    border: 2px solid blue; /* Highlight selected employer */
    transform: scale(1.1); /* Slightly enlarges selected logo */
}


body {
    margin: 0;
    padding: 0;
}

.logo-container {
    position: relative;
    width: 182%;
    height: 80px; /* Adjust as needed */
    background-color: #f8f9fa;/* Light background */

}

.logo-container img {
    height: 70px; /* Adjust the logo size */
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.left-logo {
    left: 0px; /* Adjust to keep it away from the absolute edge */
}

.right-logo {
    right: 0px; /* Adjust to keep it away from the absolute edge */
}

/* Tooltip Container */
.tooltip-container {
    position: relative;
    display: inline-block;
}

/* Tooltip Text (Hidden by Default) */
.tooltip-container .tooltip-text {
    visibility: hidden;
    width: 200px; /* Adjust width as needed */
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    position: absolute;
    bottom: 125%; /* Position above the button */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Show Tooltip on Hover */
.tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}
