/* Toast Notification System */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast-notification {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
    pointer-events: auto;
    border-left: 4px solid #007bff;
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-notification i {
    font-size: 24px;
    flex-shrink: 0;
}

.toast-notification span {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

/* Toast Types */
.toast-success {
    border-left-color: #28a745;
}

.toast-success i {
    color: #28a745;
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-error i {
    color: #dc3545;
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-warning i {
    color: #ffc107;
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-info i {
    color: #17a2b8;
}

/* RTL Support */
[dir="rtl"] .toast-container {
    right: auto;
    left: 20px;
}

[dir="rtl"] .toast-notification {
    transform: translateX(-400px);
    border-left: none;
    border-right: 4px solid #007bff;
}

[dir="rtl"] .toast-success {
    border-right-color: #28a745;
}

[dir="rtl"] .toast-error {
    border-right-color: #dc3545;
}

[dir="rtl"] .toast-warning {
    border-right-color: #ffc107;
}

[dir="rtl"] .toast-info {
    border-right-color: #17a2b8;
}

#subscriptionModal input:not([type="radio"]) {
    height: 55px;
}

#subscriptionModal .modal-footer button {
    height: 52px;
    width: 100%;
    background-color: rgba(0, 122, 255, 1);
    border-radius: 50rem;
}

#subscriptionModal .plan-title {
    font-size: 16px;
}

#subscriptionModal .plan-price {
    font-size: 14px;
}