.button-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.action-button {
    background: #1976d2;
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.action-button:hover {
    background: #1565c0;
    transform: translateY(-2px);
}

.action-button:active {
    transform: translateY(0);
}

.action-button.loading {
    background: #90caf9;
    cursor: not-allowed;
} 