.sp-profile-card {
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 10px 0;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
}

.sp-profile-card:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.sp-demo-mode {
    border: 2px dashed #0077b5;
}

.sp-layout-horizontal {
    display: flex;
    align-items: center;
    gap: 25px;
}

.sp-layout-horizontal .sp-avatar {
    flex-shrink: 0;
}

.sp-layout-horizontal .sp-content {
    flex: 1;
}

.sp-layout-vertical {
    text-align: center;
}

.sp-layout-vertical .sp-avatar {
    margin-bottom: 20px;
}

.sp-layout-minimal {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
}

.sp-layout-minimal .sp-name {
    margin: 0;
    font-size: 14px;
}

.sp-layout-minimal .sp-description,
.sp-layout-minimal .sp-position {
    display: none;
}

.sp-layout-cards {
    text-align: center;
    max-width: 300px;
}

.sp-layout-cards .sp-social-links {
    margin-top: 20px;
    justify-content: center;
}

.sp-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.sp-layout-minimal .sp-avatar img {
    width: 50px;
    height: 50px;
    border-width: 2px;
}

.sp-layout-cards .sp-avatar img {
    width: 120px;
    height: 120px;
}

.sp-name {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.sp-position {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: 500;
    color: #0077b5;
    transition: color 0.3s ease;
}

.sp-description {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.sp-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.sp-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.sp-social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.sp-linkedin { background-color: #0077b5; }
.sp-twitter { background-color: #000000; }
.sp-facebook { background-color: #1877f2; }
.sp-email { background-color: #ea4335; }

.sp-icon-animation-grow .sp-social-link:hover {
    transform: scale(1.15);
}

.sp-icon-animation-shrink .sp-social-link:hover {
    transform: scale(0.9);
}

.sp-icon-animation-float .sp-social-link:hover {
    transform: translateY(-3px);
}

.sp-icon-animation-none .sp-social-link:hover {
    transform: none;
}

.sp-social-link:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sp-no-data {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.sp-no-data p {
    margin: 0 0 10px 0;
    color: #6c757d;
}

@media (max-width: 768px) {
    .sp-layout-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .sp-profile-card {
        padding: 20px;
    }
    
    .sp-social-links {
        justify-content: center;
    }
    
    .sp-avatar img {
        width: 80px;
        height: 80px;
    }
}