﻿.btn {
    border: none;
    border-radius: 14px;
    padding: 12px 18px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.18s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.quick-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.quick-actions-bottom {
    margin-top: 18px;
}

.quick-button {
    border: 0;
    border-radius: 20px;
    padding: 18px 22px;
    cursor: pointer;
    min-width: 240px;
    text-align: left;
    transition: all 0.18s ease;
    color: #fff;
}

    .quick-button:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
    }

.quick-button-title {
    font-size: 16px;
    font-weight: 800;
}

.quick-button-subtitle {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.88;
}

.quick-blue {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
}

.quick-green {
    background: linear-gradient(135deg, #059669, #10b981);
}

.quick-orange {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.start-button {
    border: none;
    border-radius: 16px;
    padding: 16px 20px;
    width: 100%;
    cursor: pointer;
    font-weight: 800;
    color: white;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 10px 24px rgba(37,99,235,0.25);
}

    .start-button:hover {
        filter: brightness(1.05);
    }

.btn-danger {
    background: #b91c1c;
    color: white;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: #e2e8f0;
}
