        /*
	body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }*/
        .profile-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 30px;
            max-width: 500px;
            width: 100%;
            text-align: center;
        }
        .profile-image {
        /*    width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #e9ecef;*/
            cursor: pointer;
            /*transition: transform 0.3s;*/
        }
        .profile-image:hover {
            transform: scale(1.05);
        }
        .profile-name {
            margin-top: 20px;
            font-weight: 700;
            color: #343a40;
        }
        .profile-title {
            color: #6c757d;
            margin-bottom: 20px;
        }
        .profile-info {
            text-align: left;
            margin-top: 25px;
        }
        .profile-info .info-item {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
        }
        .profile-info .info-item i {
            width: 25px;
            color: #6f42c1;
            margin-right: 10px;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            color: #6f42c1;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: #6f42c1;
            color: white;
            transform: translateY(-3px);
        }
        .tooltip-inner {
            max-width: 300px;
            padding: 20px;
            background: white;
            color: #343a40;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: left;
        }
        .tooltip-inner h5 {
            color: #6f42c1;
            margin-bottom: 10px;
        }
        .bs-tooltip-top .tooltip-arrow::before {
            border-top-color: white;
        }
