@charset "UTF-8";
/* CSS Document */
/* Button Styles */

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.2s ease-in-out;
}

.btn-primary {
    color: #fff;
    background-color: #CA5A00;
    border: 1px solid #CA5A00;
    background-image: linear-gradient(-20deg, #d16603 0%, #CA5A00 100%);
}

.btn-primary:hover {
    background-color: #b35400;
    border-color: #a94e00;
}

.btn-outline-light {
    color: #f8f9fa;
    background-color: transparent;
    border: 1px solid #f8f9fa;
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
}

.btn:active {
    transform: scale(0.98);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.2);
}

.btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

