#lingo-payment-form {
    max-width: 800px;
    margin: 20px auto;
    font-family: Tahoma, sans-serif;
    direction: rtl;
}

.lingo-events-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.lingo-event-item {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.2s;
}

.lingo-event-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lingo-event-item h3 {
    margin-top: 0;
    color: #2271b1;
}

.lingo-event-item p {
    margin: 5px 0;
    font-size: 14px;
}

.lingo-select-event {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 14px;
}

.lingo-select-event:hover {
    background: #135e96;
}

#lingo-payment-form-container {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

#lingo-payment-form-container h3 {
    margin-top: 0;
}

#lingo-pay-form input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

#lingo-pay-form button {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
}

#lingo-pay-form button:hover {
    background: #135e96;
}

#lingo-pay-form button:disabled {
    background: #999;
    cursor: not-allowed;
}

#lingo-message {
    margin-top: 10px;
    color: #d63638;
    font-weight: bold;
}

.lingo-timer {
    font-weight: bold;
    color: #d63638;
}