.action-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    margin: 0.2rem;
}

.action-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.action-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

