#registrationButton{
    padding: 3px 10px;
    border: none;
    border-radius: 6px;
    background-color: white;
    color: black;
    font-weight: 900;
}

#registrationButton:hover{
    color: white;
    background-color: grey;
    transition: all 0.5s ease;
}

#registrationForm{
    position: fixed;
    top: 200;
    right: 200;
    height: 300px;
    width: 150px;
    background-color: black;
}

/* Registration Modal and Overlay */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1050; /* A high z-index to be on top of everything */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Black with transparency */
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 5% from the top and centered horizontally */
    padding: 25px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px; /* Max width to prevent it from getting too large on big screens */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    animation: fadeIn 0.5s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header and Close Button */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.modal-title {
    font-size: 1.5rem;
    margin: 0;
}

.close-button {
    color: #aaa;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
}

.close-button:hover,
.close-button:focus {
    color: #000;
    text-decoration: none;
}

/* Form Styling */
.registration-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.registration-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.registration-form input,
.registration-form select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box; /* Ensures padding doesn't add to the width */
}

.submit-button {
    background-color: #007bff; /* Example color, you can match your theme */
    color: white;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #0056b3;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}


@media screen and (max-width: 600px) {
  #registrationButton{
    display: none;
  }
}