/* Colors */
.bg-gym-gold {
    background-color: #F7BD01;
}
.bg-gym-gold:hover {
    background-color: rgba(247, 189, 1, 0.9);
}
.text-gym-gold {
    color: #F7BD01;
}

/* Form Elements */
.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-input:focus {
    outline: none;
    border-color: #F7BD01;
    box-shadow: 0 0 0 3px rgba(247, 189, 1, 0.2);
}

/* Buttons */
.btn-primary {
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: black;
    background-color: #F7BD01;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    transition: background-color 0.2s;
}
.btn-primary:hover {
    background-color: rgba(247, 189, 1, 0.9);
}

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Layout */
.rounded-lg {
    border-radius: 0.5rem;
}
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-4 {
    gap: 1rem;
}

.whitespace-nowrap {
    white-space: nowrap;
}