/* Team Widget Styles */
.cedear-team-widget {
    font-family: 'Inter', sans-serif;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
}

.cedear-team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.cedear-team-header h3 {
    margin: 0;
}

.cedear-btn-create-team,
.cedear-btn-invite {
    background: #333;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cedear-btn-create-team:hover,
.cedear-btn-invite:hover {
    background: #555;
}

.cedear-team-card {
    border: 1px solid #f0f0f0;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 6px;
}

.cedear-team-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cedear-team-info h4 {
    margin: 0;
}

.cedear-team-role {
    font-size: 12px;
    background: #eef;
    padding: 2px 6px;
    border-radius: 3px;
    color: #44a;
    text-transform: uppercase;
}

.cedear-toggle-members {
    background: transparent;
    border: 1px solid #ddd;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    margin-right: 5px;
}

.cedear-members-list {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
}

.cedear-member-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 14px;
}

.cedear-member-role {
    color: #888;
}

/* Modal */
.cedear-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.cedear-modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cedear-modal-content h3 {
    margin-top: 0;
}

.cedear-new-team-name,
.cedear-invite-email,
.cedear-invite-role {
    width: 100%;
    margin-bottom: 15px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cedear-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cedear-btn-confirm-create,
.cedear-btn-confirm-invite {
    background: #2271b1;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.cedear-btn-cancel-create,
.cedear-btn-cancel-invite {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}