.button-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
}

.btn-primary, .btn-secondary {
    padding: 16px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: transform 0.1s ease;
}

/* Gold Star Primary Blue */
.btn-primary {
    background-color: #007AFF; 
    color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Secondary Action */
.btn-secondary {
    background-color: #F2F2F7;
    color: #007AFF;
    border: 1px solid #007AFF;
}

.btn-primary:active {
    transform: scale(0.98);
}
