/* Badge de carta compartida */
.carta-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 600;
    margin-left: 8px;
}

.carta-badge.propia {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
}

.carta-badge.compartida {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeeba 100%);
    color: #856404;
}

/* Info de propietario */
.owner-info {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 19px;
    color: #666;
    margin-top: 10px;
}

/* Modal de compartir */
.share-modal-content {
    padding: 10px 0;
}

.share-search-section {
    margin-bottom: 20px;
}

.share-search-section h4 {
    margin-top: 0;
    color: var(--primary-dark);

    font-family: 'Alfa Slab One', cursive;}

.share-search-results {
    margin-top: 10px;
}

.share-search-results-list {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 250px;
    overflow-y: auto;
}

.share-search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.share-search-result-item:last-child {
    border-bottom: none;
}

.share-search-result-item:hover {
    background: #f8f9fa;
}

.share-users-section h4 {
    margin-top: 0;
    color: var(--primary-dark);

    font-family: 'Alfa Slab One', cursive;}

.share-users-list {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-height: 400px;
    overflow-y: auto;
}

.share-user-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.share-user-item:last-child {
    border-bottom: none;
}

.share-user-item:hover {
    background: #f8f9fa;
}

.share-user-info {
    flex: 1;
}

.share-user-actions {
    display: flex;
    gap: 8px;
}

/* Sección de separación */
.section-divider {
    margin: 30px 0 20px;
    padding-top: 20px;
    border-top: 2px solid #e0e0e0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;

    font-family: 'Alfa Slab One', cursive;}

.section-title .count {
    background: var(--accent-light);
    color: var(--accent-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 19px;
}

/* Selector de usuarios */
.share-add-section {
    margin-bottom: 20px;
}

.share-add-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-dark);

    font-family: 'Alfa Slab One', cursive;}

.share-select-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-select-group select {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 17px;
    background: white;
    cursor: pointer;
}

.share-select-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.share-select-group button {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .share-select-group {
        flex-direction: column;
    }
    
    .share-select-group select,
    .share-select-group button {
        width: 100%;
    }
}