/* EmailJS Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: -400px;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.3s ease-in-out;
    overflow: hidden;
}

.notification.show {
    right: 30px;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
}

.notification-success .notification-icon {
    background: #10b981;
    color: white;
}

.notification-error .notification-icon {
    background: #ef4444;
    color: white;
}

.notification-message {
    font-size: 15px;
    line-height: 1.5;
    color: #1f2937;
    flex: 1;
}

.notification-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #10b981;
}

.notification-error::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ef4444;
}

/* Responsive */
@media (max-width: 576px) {
    .notification {
        right: -100%;
        max-width: calc(100% - 40px);
        left: 20px;
    }
    
    .notification.show {
        right: auto;
    }
    
    .notification-content {
        padding: 16px 20px;
    }
    
    .notification-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .notification-message {
        font-size: 14px;
    }
}
