body {
    font-family: Arial, sans-serif;
    background-color: #101820;
    color: #f2aa4c;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
	padding-bottom: 150px; /* Adjust according to the height of the bar */

}

.container {
    background: #1a1a2e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.5);
    width: 90%;
    max-width: 500px;
    text-align: center;
    margin-top: 50px; /* Add this line to create a margin at the top */
	position: relative; /* Ensure it stays in flow */

}


h1 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

input, select, button {
    padding: 10px;
    margin: 5px 0;
    border: none;
    border-radius: 5px;
}

button {
    background-color: #f2aa4c;
    color: #101820;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #e5953b;
}

.options {
    display: flex;
    justify-content: space-around;
}

.options input {
    display: none;
}

.options label {
    background-color: #282c34;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.options input:checked + label {
    background-color: #f2aa4c;
    color: #101820;
    box-shadow: 0 0 10px #f2aa4c;
}

.results {
    margin-top: 20px;
    background-color: #282c34;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    min-height: 180px; /* Add this to ensure space is reserved for results */
    overflow-y: auto;  /* Add this to handle overflow if results are too large */
}
html {
    scroll-behavior: smooth;
}

/* Styling for the credit floater */
.credit-floater {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.credit-floater:hover {
    transform: scale(1.1);
}

.floater-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Styling for the profile popup */
.profile-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Content of the popup */
.popup-content {
    background: #e5953b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.popup-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1px;
	color : #282c34;
}

.popup-content p {
    font-size: 18px;
    margin: 5px 0;
    color: #1e90ff;
}

.popup-content a {
    text-decoration: none;
    color: #1e90ff;
}

.popup-content a:hover {
    text-decoration: underline;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
}

/* Popup fade-in effect */
.profile-popup.show {
    display: flex;
    opacity: 1;
}

.profile-popup.show .popup-content {
    transform: scale(1);
}

.navbar {
    background-color: #1a1a2e;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-link {
    text-decoration: none;
    color: #f2aa4c;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover {
    background-color: #e5953b;
    color: #101820;
}

.nav-link.active {
    background-color: #f2aa4c;
    color: #101820;
    box-shadow: 0 0 10px #f2aa4c;
}
