/* Welcome Popup Styles */
.welcome-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.welcome-animation {
    position: relative;
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.welcome-icon {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.success-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    top: -10px;
    left: -10px;
    animation-delay: 0s;
}

.ring-2 {
    width: 120px;
    height: 120px;
    top: -20px;
    left: -20px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 140px;
    height: 140px;
    top: -30px;
    left: -30px;
    animation-delay: 1s;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.welcome-content {
    padding: 30px;
    background: white;
}

.welcome-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

.welcome-message {
    margin-bottom: 25px;
}

.welcome-message p {
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    margin-bottom: 25px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.user-details {
    text-align: left;
}

.user-name {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 5px 0;
}

.user-company {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.welcome-actions {
    margin-bottom: 25px;
}

.welcome-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.welcome-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.quick-tips {
    text-align: left;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
}

.quick-tips h6 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tips-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #5a6c7d;
    font-size: 14px;
}

.tips-list li i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Modal Animation */
.modal.fade .modal-dialog {
    transform: scale(0.8) translateY(-50px);
    transition: all 0.3s ease;
}

.modal.show .modal-dialog {
    transform: scale(1) translateY(0);
}

/* Responsive Design */
@media (max-width: 576px) {
    .welcome-modal-content {
        margin: 20px;
        border-radius: 15px;
    }
    
    .welcome-title {
        font-size: 24px;
    }
    
    .welcome-content {
        padding: 20px;
    }
    
    .user-info {
        flex-direction: column;
        text-align: center;
    }
    
    .user-details {
        text-align: center;
    }
    
    .welcome-btn {
        width: 100%;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .welcome-content {
        background: #2c3e50;
        color: white;
    }
    
    .welcome-title {
        color: white;
    }
    
    .welcome-subtitle {
        color: #bdc3c7;
    }
    
    .welcome-message p {
        color: #ecf0f1;
    }
    
    .user-info {
        background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    }
    
    .user-name {
        color: white;
    }
    
    .user-company {
        color: #bdc3c7;
    }
    
    .quick-tips {
        background: #34495e;
        border-left-color: #667eea;
    }
    
    .quick-tips h6 {
        color: white;
    }
    
    .tips-list li {
        color: #ecf0f1;
    }
}
