/* ============================================
   BUTTONS: Primary, back button
   ============================================ */

/* Global Button Styling */
.btn-primary {
    background-color: #515b3a;
    border-color: #515b3a;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #6a7548;
    border-color: #6a7548;
    color: #fff;
}

/* Back Button Styling */
.btn-back {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: #515b3a;
    border: 2px solid #515b3a;
    padding: 0.5rem 1.2rem;
    border-radius: 30px; /* Pill shape */
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.btn-back i {
    transition: transform 0.3s ease;
}

.btn-back:hover {
    background-color: #515b3a;
    color: white;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(81, 91, 58, 0.3);
}

.btn-back:hover i {
    transform: translateX(-3px);
}
