/* Editor social inputs */
.site-team-social .social-input {
    margin-bottom: 15px;
}

.site-team-social .social-input label {
    display: block;
    margin-bottom: 5px;
    color: #c59d5f;
}

.site-team-social input {
    width: 100%;
    padding: 8px;
    background-color: #333;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
}

.site-team-social-input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #e2e4e7;
    border-radius: 4px;
    background: #fff;
    font-size: 14px;
    color: #333;
    transition: all 0.2s ease;
}

.site-team-social-input:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.site-team-social-input::placeholder {
    color: #757575;
}

/* Social links editor styles */
.social-links-editor {
    margin-bottom: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #e2e4e7;
}

.social-link-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: 4px;
    padding: 5px;
}

.social-link-group:last-child {
    margin-bottom: 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 4px;
    margin-right: 10px;
    border: 1px solid #e2e4e7;
}

.social-icon i {
    font-size: 18px;
    color: #666;
}

.social-link-group:nth-child(1) .social-icon i {
    color: #1877f2;
}

.social-link-group:nth-child(2) .social-icon i {
    color: #1da1f2;
}

.social-link-group:nth-child(3) .social-icon i {
    color: #db4437;
}

/* Team member controls */
.team-member-controls {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e2e4e7;
}

.member-controls-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e4e7;
}

.remove-member-button {
    background-color: #dc3545 !important;
    color: white !important;
    border-color: #dc3545 !important;
    padding: 8px 16px !important;
}

.remove-member-button:hover {
    background-color: #c82333 !important;
    border-color: #bd2130 !important;
}

.move-buttons {
    display: flex;
    gap: 5px;
}

.move-buttons .components-button {
    padding: 8px;
    height: auto;
    background: #fff !important;
    border: 1px solid #e2e4e7 !important;
}

.move-buttons .components-button:hover {
    background: #f0f0f0 !important;
}

/* Ensure default images are displayed correctly */
.editor-post-featured-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Style for the thumbnail slider */
.swiper-container.thumbnail .swiper-slide {
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0.5;
}

.swiper-container.thumbnail .swiper-slide-thumb-active {
    opacity: 1;
}