.actions {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.actions button {
    padding: 10px 25px;
    background-color: #121f34;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 10px;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(230, 30, 37, 0.3);
}

.actions button:hover {
    background-color: #0b0c54;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(230, 30, 37, 0.4);
}

.actions button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(230, 30, 37, 0.3);
}

.calculate-btn {
    display: block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #121f34;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    font-size: 14px;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background-color: #0b0c54;
}

@media (max-width: 768px) {
    .actions button {
        padding: 8px 15px;
        font-size: 13px;
        margin: 5px;
    }
    
    .actions {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Print */
@media print {
    .actions {
        display: none !important;
    }
} 