body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url('images/fishing-poles.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-align: center;
    min-height: 100vh; /* Added */
    display: flex;      /* Added */
    justify-content: center; /* Added */
    align-items: center;     /* Added */
}

.container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    margin: 40 auto;
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 0 20px #000;
    max-height: 90vh;   /* 90% of viewport height */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}
a {
    font-size: 3.5em;
    color: #1E90FF; /* Dodger Blue - bright and clear */
    text-decoration: none; /* optional: removes underline */
    font-weight: bold; /* optional: makes links stand out */
}
a:hover {
    color: #104E8B; /* darker blue on hover for nice effect */
    text-decoration: underline; /* optional hover effect */
}
p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.button {
    text-decoration: none;
    color: white;
    background-color: #007acc;
    padding: 12px 24px;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #005f99;
}

.alert-message {
    color: #ff0000;
    font-weight: bold;
}

/* Dropdown Container - Positioned top-right */
.dropdown {
    position: absolute;
    top: 20px; /* Adjust this to move lower or higher */
    right: 20px;
    z-index: 1000;
}

/* Dropdown Button Style */
.dropbtn {
    background-color: #007acc;
    color: white;
    padding: 12px 16px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

/* Dropdown Content Style */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 260px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.4);
    padding: 12px;
    color: white;
    text-align: left;
    right: 0;
    top: 40px; /* positions it below the button */
}

.dropdown-content p {
    margin: 8px 0;
    padding: 6px 0;
    font-size: 14px;
}

/* Show Content */
.dropdown.show .dropdown-content {
    display: block;
}
