/* Uniform button styling for result action buttons */
.results-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

.results-actions .btn-quote,
.results-actions .btn-primary,
.results-actions .btn-secondary {
    flex: 1;
    min-width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

/* Specific styling for the Quote button */
.results-actions .btn-quote {
    background-color: #307044; /* Brand green */
    color: white;
    border: none;
}
.results-actions .btn-quote:hover {
    background-color: #254d35; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .results-actions {
        flex-direction: column;
    }
    
    .results-actions .btn-quote,
    .results-actions .btn-primary,
    .results-actions .btn-secondary {
        width: 100%;
    }
}
