/* Dashboard Button Styles */
.btn.btn-success {
    background-color: #00a651;
    color: white;
    border: 2px solid #00a651;
}

.btn.btn-success:hover {
    background-color: #008c44;
    border-color: #008c44;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta .btn {
        margin: 5px 0;
        width: 100%;
        text-align: center;
    }
}
