/* Responsive button style */
.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn-submit, .btn-secondary {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: block;
    text-align: center;
}

.btn-submit {
    background-color: #28a745;
}

.btn-secondary {
    background-color: #007bff;
}

.btn-submit:hover, .btn-secondary:hover {
    opacity: 0.9;
}

/* Table scroll wrapper */
.table-wrapper {
    overflow-x: auto;
    width: 100%;
}
