.button-link {
    display: inline-block;
    padding: 10px 16px;
    margin: 5px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    text-align: center;
}

    .button-link:hover {
        background-color: #0056b3;
    }

.badge-confirmed {
    color: green;
    font-weight: bold;
}

.badge-unconfirmed {
    color: orange;
    font-weight: bold;
}

.status-message {
    font-size: 0.9em;
    margin-top: 6px;
    margin-left: 32px;
    transition: opacity 0.3s ease-in-out;
}

.status-available {
    color: green;
}

.status-unavailable {
    color: red;
}

.status-label {
    font-weight: bold;
    display: inline-block;
    min-width: 150px; /* or whatever fits your layout */
}

.status-icon {
    font-size: 1.2em;
    margin-right: 6px;
}

table td {
    vertical-align: top;
}

button:disabled, input[type="submit"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* visually greyed out, non-clickable */
.submit-disabled {
    opacity: 0.55;
    cursor: not-allowed;
    pointer-events: none; /* prevents clicks on the button */
}

.timestamp {
    color: gray;
    font-style: italic; /* optional: to visually distinguish it */
    font-size: 0.9em; /* slightly smaller font */
}

#postInput {
    width: 100%;
    max-width: 600px;
    resize: vertical; /* user can resize vertically only */
    font-size: 1rem;
    padding: 0.5em;
}

.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #222; /* Dark background */
    color: white;
    padding: 10px 20px;
    border-bottom: 3px solid #555;
}

.header-logo {
    height: 60px; /* adjust as needed */
    width: auto;
}

.header-title {
    flex-grow: 1;
    text-align: center;
    font-size: 2em;
    font-weight: bold;
    color: gold;
    margin: 0;
}
