body {
    font-family: Arial, sans-serif;
    background-color: #d6f0fd !important;
    margin: 40px;
    padding: 0;
    position: relative;  /* ✅ Needed for absolute positioning */
}

h1 {
    color: #007bff;
    text-align: center;
}

form {
    background-color: #eef8ff;
    padding: 30px 40px;
    border-radius: 12px;
    max-width: 1000px;
    width: 95%;
    margin: 80px auto 20px auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #007bff;   /* ✅ Blue border */
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

input, select, button {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    background-color: #007bff;
    color: white;
    margin-top: 20px;
    cursor: pointer;
}

button:hover {
    background-color: #0069d9;
}

a {
    margin-left: 5px;
    text-decoration: none;
    color: #007bff;
}

.language-bar {
    position: absolute;
    top: 20px;
    right: 40px;
    font-weight: bold;
    text-align: right;
}

.success-message {
    color: #007bff;
    text-align: center;
    font-weight: bold;
    margin-top: 20px;
}

body {
    background-color: #e3f2fd;
    margin: 0;
    font-family: Arial, sans-serif;
}

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 40px 20px;
}

.result-box {
    background-color: #eef8ff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
    border: 2px solid #007bff;
}

.result-box h1 {
    text-align: center;
    margin-bottom: 20px;
}

.company-list {
    list-style: none;
    padding: 0;
}

.company-item {
    background: #f9f9f9;
    border-radius: 6px; /* Match form field radius */
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc; /* ✅ Light border like form fields */
    box-shadow: none; /* Optional: remove if you want a flatter look */


}

.result-actions {
    text-align: center;
    margin-top: 25px;
}

.result-actions a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

.result-actions a:hover {
    text-decoration: underline;
}
