/* Budiyet SignalR Notification Styles */

.budiyet-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #22c55e;
    border-radius: 8px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    animation: slideIn 0.3s ease;
    min-width: 300px;
}

.budiyet-toast .toast-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.budiyet-toast .toast-content {
    flex: 1;
}

.budiyet-toast .toast-content strong {
    display: block;
    font-size: 14px;
    color: #111827;
    margin-bottom: 2px;
}

.budiyet-toast .toast-content p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.budiyet-toast .toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
}

.budiyet-toast .toast-close:hover {
    color: #374151;
}

/* Badge Modal */
.budiyet-badge-modal .badge-modal-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    animation: popIn 0.4s ease;
    max-width: 360px;
}

.budiyet-badge-modal .badge-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.budiyet-badge-modal .badge-icon img {
    width: 64px;
    height: 64px;
}

.budiyet-badge-modal h3 {
    font-size: 20px;
    color: #111827;
    margin: 0 0 8px;
}

.budiyet-badge-modal .badge-name {
    font-size: 16px;
    font-weight: 600;
    color: #22c55e;
    margin: 0 0 4px;
}

.budiyet-badge-modal .badge-points {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px;
}

.budiyet-badge-modal button {
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.budiyet-badge-modal button:hover {
    background: #16a34a;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);    opacity: 1; }
}

@keyframes popIn {
    0%   { transform: scale(0.5); opacity: 0; }
    80%  { transform: scale(1.05); }
    100% { transform: scale(1);   opacity: 1; }
}
