/* Dicard VCard Frontend Styles */

.dicard-vcard-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 20px;
}

.dicard-vcard-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.dicard-vcard-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.dicard-vcard-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #f0f0f0;
}

.dicard-vcard-name {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #333;
}

.dicard-vcard-position {
    font-size: 16px;
    color: #666;
    margin: 5px 0;
}

.dicard-vcard-company {
    font-size: 18px;
    font-weight: 600;
    color: #444;
    margin: 5px 0;
}

.dicard-vcard-logo {
    max-width: 200px;
    height: auto;
    margin-top: 15px;
}

.dicard-vcard-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.dicard-vcard-button {
    flex: 1;
    min-width: 200px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.dicard-vcard-button-primary {
    background: #2563eb;
    color: #fff;
}

.dicard-vcard-button-primary:hover {
    background: #1d4ed8;
}

.dicard-vcard-button-secondary {
    background: #fff;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.dicard-vcard-button-secondary:hover {
    background: #f0f9ff;
}

.dicard-vcard-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #333;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 8px;
}

.dicard-vcard-item {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.dicard-vcard-item:last-child {
    border-bottom: none;
}

.dicard-vcard-item strong {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.dicard-vcard-item a {
    color: #2563eb;
    text-decoration: none;
    font-size: 16px;
}

.dicard-vcard-item a:hover {
    text-decoration: underline;
}

.dicard-vcard-item p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.dicard-vcard-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.dicard-vcard-social-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f9ff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dicard-vcard-social-link:hover {
    background: #2563eb;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .dicard-vcard-container {
        padding: 10px;
    }
    
    .dicard-vcard-card {
        padding: 20px;
    }
    
    .dicard-vcard-actions {
        flex-direction: column;
    }
    
    .dicard-vcard-button {
        width: 100%;
    }
}
