body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: url('gal.gif') no-repeat center center fixed;
    background-size: cover;
}
header {
    margin-top: 22px;
    margin-bottom: 10px;
    font-size: 35px;
    color: rgb(136, 225, 234);
    font-family: CURLZ MT;
    font-weight: bolder;
    text-shadow: 1px 1px 2px rgb(4, 4, 67), 0 0 1em rgb(238, 252, 255), 0 0 0.2em rgb(225, 249, 104);
}
h1 {
    margin: 0;
}
.container {
    max-width: 800px;
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    padding-left: 0;
    padding-right: 0;    
    background-color: rgba(13, 20, 137, 0.406);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.tbr-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tbr-grid > div {
    flex: 1 1 250px; /* grow, shrink, base width */
    max-width: 300px; /* optional: restrict max width */
}

.column {
    background-color: rgba(9, 7, 41, 0.548);
    color: yellow;
    padding: 20px;
    border-radius: 10px;
    width: 20%;
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.7), 0 0 15px rgba(0, 255, 255, 0.5);
}
.column h2 {
    font-size: 27px;
    text-align: center;
    font-style: italic;
    color: beige;
    font-family: segoe script;
    text-shadow: rgb(195, 244, 248) 1px 0 10px;
}
.column form {
    display: flex;
    flex-direction: column;
}
.column input[type="text"], .column input[type="submit"] {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
}
.column input[type="text"] {
    background-color: white;
    color: black;
}
.column input[type="submit"] {
    background-color: #0a6d17;
    color: white;
    cursor: pointer;
}
.column input[type="submit"]:hover {
    background-color: #2c0c53;
}

table {
    width: 100%;
    margin-top: 10px;
    background-color: rgba(15, 23, 161, 0.575);
    color: rgb(254, 250, 250);
    text-shadow: rgb(195, 244, 248) 1px 0 10px;
    border-collapse: separate; /* Use 'separate' to apply border-radius */
    border-spacing: 0; /* Remove space between cells */
    border-radius: 10px; /* Rounded corners for the whole table */
    overflow: hidden; /* Ensures content stays within rounded corners */
}

th, td {
    padding: 10px;
    text-align:center;
    border: 1px solid #ccc; /* Optional border around table cells */
}

th:first-child {
    border-top-left-radius: 10px; /* Top-left rounded corner */
}

th:last-child {
    border-top-right-radius: 10px; /* Top-right rounded corner */
}

td:first-child {
    border-bottom-left-radius: 10px; /* Bottom-left rounded corner */
}

td:last-child {
    border-bottom-right-radius: 10px; /* Bottom-right rounded corner */
}


/* Dropdown Container Styling */
.dropdown {
    position: absolute;
    top: 20px;
    left: 20px;
}

.dropdown-btn {
    font-size: 30px;
    background-color: transparent;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Show dropdown content on hover */
.dropdown:hover .dropdown-content {
    display: block;
}
