body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f2f5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    padding: 20px;
    background: #fff;
}

header {
    text-align: center;
    margin-bottom: 30px;
}

.subtitle {
    color: #666;
    font-size: 16px;
}

.columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.left-column,
.right-column {
    flex: 1;
    min-width: 300px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="text"],
input[type="url"] {
    padding: 10px;
    font-size: 16px;
}

button {
    padding: 10px;
    background: #007bff;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

ul#linkList {
    list-style: none;
    padding-left: 0;
}

ul#linkList li {
    margin: 10px 0;
    background: #e9ecef;
    padding: 10px;
    border-radius: 5px;
}

ul#linkList li a {
    margin-right: 10px;
}

.donate-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.donate-btn:hover {
    background: #e55347;
}

.right-column h2 {
    margin-top: 20px;
    color: #333;
}

.right-column p {
    margin: 5px 0;
}

.right-column a {
    color: #007bff;
    text-decoration: none;
}

.right-column a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #555;
    background: #f0f2f5;
    padding-bottom: 20px;
}
/* General container and columns setup */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.columns {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.left-column {
    flex: 2; /* Take up more space (larger) */
    margin-right: 20px;
}

.right-column {
    flex: 1; /* Take up less space (smaller) */
    margin-left: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.right-column.shorter {
    max-height: 500px; /* Set a max height for the right column */
    overflow-y: auto;  /* Allow scrolling if content overflows */
}

/* Style adjustments for form and buttons */
form {
    margin-bottom: 20px;
}

input, button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button {
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

/* Footer styling */
footer {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
    background-color: #f1f1f1;
    width: 100%;
}
.storage-note {
    font-size: 14px;
    color: #888;
    margin-top: 15px;
    background-color: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
