.button-outlined {
    color: #fff;
    border-color: #ffb333;
    background-color: #002c6d;
    background-image: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    width: 300px; /* Set a fixed width */
}

.button-outlined:hover {
    color: #fff;
    background-color: #002c6d;
    border-color: #ffb333;
}

.dashboard {
    background-color: #d6d6d6;
}

/* Media query for xl breakpoint */
@media (max-width: 1399.98px) {
    .button-outlined {
        width: 240px; /* 20% smaller than 300px */
    }
}

/* Media query for xxl breakpoint and above */
@media (min-width: 1400px) {
    .button-outlined {
        width: 300px; /* Original size */
    }
}

.formbuttons {
    display: inline-block;
    font-weight: 400;
    color: white;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    background-color: #28005c;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}