﻿.ticket-card {
    background: #fff;
    border-left: 6px solid #007bff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.ticket-label {
    font-weight: 600;
}

.badge-satis {
    background: #28a745;
    padding: 6px 12px;
    font-size: 13px;
}

.badge-iptal {
    background: #dc3545;
    padding: 6px 12px;
    font-size: 13px;
}

@media (max-width: 768px) {
    .ticket-row {
        flex-direction: column;
        gap: 2px;
    }
}

.gs-btn {
    background: linear-gradient(45deg, #ff0000, #ffdd00);
    color: white;
    font-weight: bold;
    border: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    transition: 0.2s;
}

    .gs-btn:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

    .gs-btn:active {
        transform: scale(0.97);
    }

@media (max-width: 768px) {
    .gs-btn {
        font-size: 20px;
        padding: 14px 0;
        width: 100%;
    }
}


